aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals/ref06_test.py
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-05-20 10:57:14 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-05-20 12:16:54 -0300
commit361ac438c2b9e3c6c10c9ab2207a6464557b8a85 (patch)
tree295aa33dd306831480278d78f2114dc8d41dc6b2 /tests/signals/ref06_test.py
parent3d205e83191fa778d9e17e318cff28829abfa62d (diff)
Fixed signal/slot class name based on PSEP 100.
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
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 05712b3be..cefa1f2ca 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