Preferences/ToolGroupConfigurationDialog.py

changeset 3020
542e97d4ecb3
parent 3010
befeff46ec0f
child 3034
7ce719013078
child 3058
0a02c433f52d
--- a/Preferences/ToolGroupConfigurationDialog.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/Preferences/ToolGroupConfigurationDialog.py	Mon Oct 14 19:30:36 2013 +0200
@@ -56,14 +56,16 @@
         groupName = self.nameEdit.text()
         
         if not groupName:
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Add tool group entry"),
                 self.trUtf8("You have to give a name for the group to add."))
             return
         
         if len(self.groupsList.findItems(
                 groupName, Qt.MatchFlags(Qt.MatchExactly))):
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Add tool group entry"),
                 self.trUtf8("An entry for the group name {0} already exists.")\
                     .format(groupName))
@@ -84,14 +86,16 @@
         groupName = self.nameEdit.text()
         
         if not groupName:
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Add tool group entry"),
                 self.trUtf8("You have to give a name for the group to add."))
             return
         
         if len(self.groupsList.findItems(
                 groupName, Qt.MatchFlags(Qt.MatchExactly))):
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Add tool group entry"),
                 self.trUtf8("An entry for the group name {0} already exists.")\
                     .format(groupName))
@@ -109,7 +113,8 @@
         if row < 0:
             return
         
-        res = E5MessageBox.yesNo(self,
+        res = E5MessageBox.yesNo(
+            self,
             self.trUtf8("Delete tool group entry"),
             self.trUtf8("""<p>Do you really want to delete the tool group"""
                         """ <b>"{0}"</b>?</p>""")\

eric ide

mercurial