Fix bug 797 - "error on ui file load"

Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
          Renato Araújo <renato.filho@openbossa.org>
This commit is contained in:
Hugo Parente Lima 2011-05-03 16:37:07 -03:00
commit fd2abb11f5
3 changed files with 14 additions and 2 deletions

View file

@ -3,5 +3,6 @@ PYSIDE_TEST(bug_376.py)
PYSIDE_TEST(bug_392.py)
PYSIDE_TEST(bug_426.py)
PYSIDE_TEST(bug_552.py)
PYSIDE_TEST(bug_797.py)
PYSIDE_TEST(uiloader_test.py)
PYSIDE_TEST(ui_test.py)

View file

@ -0,0 +1,11 @@
from PySide import QtUiTools
from PySide import QtCore
from PySide import QtGui
from helper import adjust_filename
app = QtGui.QApplication([])
loader = QtUiTools.QUiLoader()
file = QtCore.QFile(adjust_filename('bug_552.ui', __file__))
w = QtGui.QWidget()
# An exception can't be thrown
mainWindow = loader.load(file, w)