UI/FindFileDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
--- a/UI/FindFileDialog.py	Sun Jun 19 17:50:39 2011 +0200
+++ b/UI/FindFileDialog.py	Sun Jun 19 19:36:27 2011 +0200
@@ -51,7 +51,7 @@
         @param project reference to the project object
         @param parent parent widget of this dialog (QWidget)
         """
-        QDialog.__init__(self, parent)
+        super().__init__(parent)
         self.setupUi(self)
         self.setWindowFlags(Qt.WindowFlags(Qt.Window))
         
@@ -181,7 +181,7 @@
             self.findList.clear()
             self.replacetextCombo.setEditText("")
         
-        QDialog.show(self)
+        super().show()
         
     def on_findtextCombo_editTextChanged(self, text):
         """

eric ide

mercurial