From f1a737a2207b57d8976d4b0dc64c33e378dfe302 Mon Sep 17 00:00:00 2001 From: Hugo Parente Lima Date: Mon, 4 Jul 2011 18:29:46 -0300 Subject: Fix bug 913 - "Widgets inside QTabWidget are not exported as members of the containing widget" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewer: Marcelo Lira Renato Araújo --- tests/QtUiTools/bug_392.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/QtUiTools/bug_392.py') 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() -- cgit