aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals/ref06_test.py
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-05-31 10:37:21 -0300
committerHugo Parente Lima <hugo.lima@openbossa.org>2010-05-31 10:41:51 -0300
commitc161698a4014b1d73c3409c62ea93e2369abf9b8 (patch)
tree62a32461f3b5c075c5cadf6f4afa1487a9c105b8 /tests/signals/ref06_test.py
parent2cb23734c85529a32e720b6f624fa6176a8e0a32 (diff)
Revert "Fixed signal/slot class name based on PSEP 100."
This reverts commit 361ac438c2b9e3c6c10c9ab2207a6464557b8a85. Conflicts: libpyside/qsignal.cpp
Diffstat (limited to 'tests/signals/ref06_test.py')
-rwxr-xr-xtests/signals/ref06_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/signals/ref06_test.py b/tests/signals/ref06_test.py
index cefa1f2ca..05712b3be 100755
--- a/tests/signals/ref06_test.py
+++ b/tests/signals/ref06_test.py
@@ -2,17 +2,17 @@
# -*- coding: utf-8 -*-
import unittest
-from PySide.QtCore import QObject, QCoreApplication, QTimeLine, signal, slot
+from PySide.QtCore import QObject, QCoreApplication, QTimeLine, Signal, Slot
from helper import UsesQCoreApplication
class ExtQObject(QObject):
- signalbetween = signal('qreal')
+ signalbetween = Signal('qreal')
def __init__(self):
QObject.__init__(self)
self.counter = 0
- @slot('qreal')
+ @Slot('qreal')
def foo(self, value):
self.counter += 1