Hy,<br><br>I use to create a simple QDialog widget, that I create myself (I called it WindowChapterSelectionDialog).<br>I create it like that:<br><br>wChapterSelection = WindowChapterSelectionDialog.WindowChapterSelectionDialog
() # &lt;- I always import the module, not the class directly<br>[..code that as nothing to do with this dialog]<br>wChapterSelection.exec_()<br><br><br>The class look like this:<br>class WindowChapterSelectionDialog(QtGui.QDialog
):<br>&nbsp;&nbsp;&nbsp; def __init__(self):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; super(WindowChapterSelectionDialog, self).__init__()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ui_WindowChapterSelection.Ui_WindowChapterSelection.tr = _ # &lt;- I use the gettext function instead of translate, I prefer ^^
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.ui = Ui_WindowChapterSelection.Ui_WindowChapterSelection()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.ui.setupUi(self)<br><br><br>So this, class is quiet simple.<br>The problem, is that when I make the exec_(), I&#39;ve got a Bus Error.
<br><br>So I tried doing this instead:<br><br>wChapterSelection = QtGui.QDialog()<br>
wChapterSelection.exec_()<br>
<br>And I&#39;ve got also a bus error.<br><br>What really suprise me, is that I already use QDialog elsewhere, and I didn&#39;t had any problem with this.<br><br>Does any of you have any idea ?<br><br>For information, I&#39;m using PyQt 
4.1 and Qt 4.1.4 on SunOS<br><br>Thanks for your time.<br><br>-- <br>Alex<br>