diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-07-04 18:29:46 -0300 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-07-11 15:11:56 -0300 |
commit | f1a737a2207b57d8976d4b0dc64c33e378dfe302 (patch) | |
tree | 69cd2102f683c67c2756cc9139daf7747a86c9f5 /tests/QtUiTools/bug_392.py | |
parent | 505cf202fbf82dca6d3742166195273e103057fc (diff) | |
download | pyside-f1a737a2207b57d8976d4b0dc64c33e378dfe302.tar.gz pyside-f1a737a2207b57d8976d4b0dc64c33e378dfe302.tar.xz pyside-f1a737a2207b57d8976d4b0dc64c33e378dfe302.zip |
Fix bug 913 - "Widgets inside QTabWidget are not exported as members of the containing widget"
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'tests/QtUiTools/bug_392.py')
-rw-r--r-- | tests/QtUiTools/bug_392.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtUiTools/bug_392.py b/tests/QtUiTools/bug_392.py index 69817ff..c6e751f 100644 --- a/tests/QtUiTools/bug_392.py +++ b/tests/QtUiTools/bug_392.py @@ -19,7 +19,7 @@ class BugTest(UsesQApplication): filePath = os.path.join(os.path.dirname(__file__), 'action.ui') result = loader.load(filePath, w) - self.assert_(isinstance(result.statusbar.actionFoo, QtGui.QAction)) + self.assert_(isinstance(result.actionFoo, QtGui.QAction)) def testPythonCustomWidgets(self): w = QtGui.QWidget() |