aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals/ref05_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/ref05_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/ref05_test.py')
-rwxr-xr-xtests/signals/ref05_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/signals/ref05_test.py b/tests/signals/ref05_test.py
index 7c53300a5..e41248143 100755
--- a/tests/signals/ref05_test.py
+++ b/tests/signals/ref05_test.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
import unittest
-from PySide.QtCore import QObject, QCoreApplication, QTimeLine, Slot
+from PySide.QtCore import QObject, QCoreApplication, QTimeLine, slot
from helper import UsesQCoreApplication
class ExtQObject(QObject):
@@ -11,7 +11,7 @@ class ExtQObject(QObject):
QObject.__init__(self)
self.counter = 0
- @Slot('qreal')
+ @slot('qreal')
def foo(self, value):
self.counter += 1