##// END OF EJS Templates
static connects where useless, because they are already present via unbound methods...
florianlink -
r63:b0c20a340471
parent child
Show More
@@ -67,11 +67,6 public slots:
67 67 PyObject* arg3 = NULL,PyObject* arg4 = NULL,PyObject* arg5 = NULL,PyObject* arg6 = NULL,PyObject* arg7 = NULL);
68 68 #define emit
69 69
70 bool static_QObject_connect(QObject* sender, const QByteArray& signal, PyObject* callable) { return connect(sender, signal, callable); }
71 bool static_QObject_connect(QObject* sender, const QByteArray& signal, QObject* receiver, const QByteArray& slot) { return connect(sender, signal, receiver, slot); }
72 bool static_QObject_disconnect(QObject* sender, const QByteArray& signal, PyObject* callable) { return disconnect(sender, signal, callable); }
73 bool static_QObject_disconnect(QObject* sender, const QByteArray& signal, QObject* receiver, const QByteArray& slot) { return disconnect(sender, signal, receiver, slot); };
74
75 70 QObject* parent(QObject* o);
76 71 void setParent(QObject* o, QObject* parent);
77 72
General Comments 0
You need to be logged in to leave comments. Login now