aboutsummaryrefslogtreecommitdiffstats
path: root/PySide2/QtWebKitWidgets
Commit message (Collapse)AuthorAgeFilesLines
* Wrap licenses of the XML[.in] files in C++ commentsFriedemann Kleint2016-10-191-34/+38
| | | | | | | | | The license checker is currently unable to handle XML files; it matches C++ comments. Task-number: PYSIDE-431 Change-Id: Ife6020f2fa666e2fc86e795b4b73f2e05ffed1b3 Reviewed-by: Christian Tismer <tismer@stackless.com>
* Updated license headers of the typesystem XML filesFriedemann Kleint2016-09-271-17/+34
| | | | | Change-Id: Icc28e8b45d9327dc0786e006ab9d414fc24668ee Reviewed-by: Lars Knoll <lars.knoll@qt.io>
* 1. These 2 new functions could be suppressed by editing ↵zhihaoadsk2016-04-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PySide2/QtTest/typesystem_test.xml 2. Also fixed typo: Qt5Webkit -> Qt5WebKit 3. fixed global.h.in (@Qt5WebEngine_FOUND@ should be @Qt5WebEngineWidgets_FOUND@) 4. And fixed a couple of crash (more condition check). `Scanning dependencies of target QtTest [ 82%] Building CXX object PySide2/QtTest/CMakeFiles/QtTest.dir/PySide2/QtTest/qtest_pysideqtoucheventsequence_wrapper.cpp.o [ 82%] Building CXX object PySide2/QtTest/CMakeFiles/QtTest.dir/PySide2/QtTest/qtest_wrapper.cpp.o /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:3836:40: error: expected ';' after top level declarator static PyObject* Sbk_QTestFunc_toString(PyObject* self, PyObject* pyArg) ^ ; /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:4120:7: error: unexpected namespace name 'QTest': expected expression ::QTest* cppSelf = 0; ^ /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:4120:14: error: use of undeclared identifier 'cppSelf' ::QTest* cppSelf = 0; ^ /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:4121:16: error: use of undeclared identifier 'cppSelf' SBK_UNUSED(cppSelf) ^ /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_install/py2.7-qt5.6.0-64bit-release/include/shiboken2/helper.h:31:31: note: expanded from macro 'SBK_UNUSED' #define SBK_UNUSED(x) (void)x; ^ /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:4124:5: error: use of undeclared identifier 'cppSelf' cppSelf = ; ^ /Volumes/data2/mayadev/pyside/2.0qt56/pyside2-setup/pyside_build/py2.7-qt5.6.0-64bit-release/pyside2/PySide2/QtTest/PySide2/QtTest/qtest_wrapper.cpp:4124:15: error: expected expression cppSelf = ; ` The toString and toString errors are caused by changes in QtTest/qtestcase.h #define QTEST_COMPARE_DECL(KLASS)\ template<> Q_TESTLIB_EXPORT char *toString(const KLASS &); Qt 5.6 has the following new lines in qtestcase.h: QTEST_COMPARE_DECL(signed char) QTEST_COMPARE_DECL(unsigned char) shiboken picked up the new functions in Qt 5.6 These 2 new functions could be suppressed by editing PySide2/QtTest/typesystem_test.xml
* finally, pyside needs to be renamed in the XML filesChristian Tismer2015-09-221-1/+1
| | | | | The XML names like "PySide.QtCore" go into the binaries for import, so it is necessary to change them all. There are also hundreds of Python files which must bechanged, as well.
* not-so-small fix to the huge change.Christian Tismer2015-09-211-1/+1
| | | | | | I just understood what is needed to define a package: The files PySide2Config(...).cmake are crucial, the project names have little to do with that.
* huge change on project layout.Christian Tismer2015-09-212-0/+322
The intention is to have PySide2 and Shiboken2 as project names, to allow for co-existence of PySide and PySide2. This is the first version that builds with these settings on OS X: $ python3 setup.py build --debug --no-examples --ignore-git --qmake=/usr/local/Cellar/qt5/5.5.0/bin/qmake --jobs=9 This is not yet tested.