eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py

changeset 7759
51aa6c6b66f7
parent 7533
88261c96484b
child 7780
41420f82c0ac
diff -r dd54d33d21d2 -r 51aa6c6b66f7 eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py
--- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py	Mon Oct 05 19:51:55 2020 +0200
+++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py	Tue Oct 06 17:52:44 2020 +0200
@@ -269,7 +269,7 @@
             self.categoriesEdit.text(), ";",
             subEntries=self.__subCategories,
             allowMultiMain=False)
-        if dlg.exec_() == QDialog.Accepted:
+        if dlg.exec() == QDialog.Accepted:
             categories = dlg.getData(";", True)
             self.categoriesEdit.setText(categories)
     
@@ -299,7 +299,7 @@
         dlg = DotDesktopListSelectionDialog(
             self.__showinEnvironments,
             self.onlyShowEdit.text(), ";")
-        if dlg.exec_() == QDialog.Accepted:
+        if dlg.exec() == QDialog.Accepted:
             environments = dlg.getData(";", True)
             self.onlyShowEdit.setText(environments)
     
@@ -329,7 +329,7 @@
         dlg = DotDesktopListSelectionDialog(
             self.__showinEnvironments,
             self.notShowEdit.text(), ";")
-        if dlg.exec_() == QDialog.Accepted:
+        if dlg.exec() == QDialog.Accepted:
             environments = dlg.getData(";", True)
             self.notShowEdit.setText(environments)
     

eric ide

mercurial