aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-02-01 20:33:02 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-01 20:41:29 -0200
commit9025d5487c7841ab18150006e68c9041c0678902 (patch)
tree6ddda4d7153bafc074d3846a0a22cc93f0fa96c6 /PySide/QtCore
parente864bdf57e2c549ad5f8f6f8b966dadca6f1ee68 (diff)
Fixed signal signature on singleshot inject code.
Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>
Diffstat (limited to 'PySide/QtCore')
-rw-r--r--PySide/QtCore/typesystem_core.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/PySide/QtCore/typesystem_core.xml b/PySide/QtCore/typesystem_core.xml
index 235078bea..b8d453c4b 100644
--- a/PySide/QtCore/typesystem_core.xml
+++ b/PySide/QtCore/typesystem_core.xml
@@ -2222,7 +2222,7 @@
SbkQTimer_Type.super.ht_type.tp_init(pyTimer, emptyTuple, 0);
QTimer* timer = SbkQTimer_cptr(pyTimer);
- PyObject* result = PyObject_CallMethod(pyTimer, "connect", "OsOs", pyTimer, SIGNAL("timeout()"), %PYARG_2, %3);
+ PyObject* result = PyObject_CallMethod(pyTimer, "connect", "OsOs", pyTimer, SIGNAL(timeout()), %PYARG_2, %3);
Py_DECREF(result);
timer->setSingleShot(true);
timer->connect(timer, SIGNAL("timeout()"), timer, SLOT("deleteLater()"));