aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtUiTools/bug_552.py
blob: 6a93040a980a8737ed8807373b7951872b830aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 :-)