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>
This commit is contained in:
Hugo Parente Lima 2011-07-04 18:29:46 -03:00
commit f3d69f65d1
6 changed files with 121 additions and 57 deletions

View file

@ -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()