aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/libpyside/signalmanager.cpp.in
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/libpyside/signalmanager.cpp.in')
-rw-r--r--sources/pyside2/libpyside/signalmanager.cpp.in28
1 files changed, 2 insertions, 26 deletions
diff --git a/sources/pyside2/libpyside/signalmanager.cpp.in b/sources/pyside2/libpyside/signalmanager.cpp.in
index 473057cbc..8ede09610 100644
--- a/sources/pyside2/libpyside/signalmanager.cpp.in
+++ b/sources/pyside2/libpyside/signalmanager.cpp.in
@@ -55,10 +55,10 @@
#include <QDebug>
#include <limits>
#include <algorithm>
-#include <typeresolver.h>
#include <basewrapper.h>
+#include <bindingmanager.h>
#include <sbkconverter.h>
-#include <conversions.h>
+#include <sbkstring.h>
// These private headers are needed to throw JavaScript exceptions
#if @QML_PRIVATE_API_SUPPORT@
@@ -214,30 +214,6 @@ QDataStream &operator>>(QDataStream& in, PyObjectWrapper& myObj)
};
-namespace Shiboken {
-
-template<>
-struct Converter<PySide::PyObjectWrapper>
-{
- static PySide::PyObjectWrapper toCpp(PyObject* obj)
- {
- return PySide::PyObjectWrapper(obj);
- }
-
- static PyObject* toPython(void* obj)
- {
- return toPython(*reinterpret_cast<PySide::PyObjectWrapper*>(obj));
- }
-
- static PyObject* toPython(const PySide::PyObjectWrapper& obj)
- {
- Py_INCREF((PyObject*)obj);
- return obj;
- }
-};
-
-};
-
using namespace PySide;
struct SignalManager::SignalManagerPrivate