aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtUiTools/bug_552.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtUiTools/bug_552.py')
-rw-r--r--tests/QtUiTools/bug_552.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/QtUiTools/bug_552.py b/tests/QtUiTools/bug_552.py
new file mode 100644
index 000000000..6a93040a9
--- /dev/null
+++ b/tests/QtUiTools/bug_552.py
@@ -0,0 +1,21 @@
+from helper import adjust_filename
+from PySide import QtGui, QtCore
+from PySide.QtUiTools import QUiLoader
+
+class View_1(QtGui.QWidget):
+
+ def __init__(self):
+ QtGui.QWidget.__init__(self)
+ loader = QUiLoader()
+ widget = loader.load(adjust_filename('bug_552.ui', __file__), self)
+ self.children = []
+ for child in widget.findChildren(QtCore.QObject, None):
+ self.children.append(child)
+ self.t = widget.tabWidget
+ self.t.removeTab(0)
+
+app = QtGui.QApplication([])
+window = View_1()
+window.show()
+
+# If it doesn't crash it works :-)