Project/NewDialogClassDialog.py

branch
Py2 comp.
changeset 3060
5883ce99ee12
parent 3057
10516539f238
parent 3034
7ce719013078
child 3145
a9de05d4a22f
diff -r 0a02c433f52d -r 5883ce99ee12 Project/NewDialogClassDialog.py
--- a/Project/NewDialogClassDialog.py	Fri Nov 01 15:48:48 2013 +0100
+++ b/Project/NewDialogClassDialog.py	Sun Nov 03 15:58:22 2013 +0100
@@ -63,8 +63,8 @@
         Private slot to set the enable state of theok button.
         """
         self.okButton.setEnabled(
-            self.classnameEdit.text() != "" and \
-            self.filenameEdit.text() != "" and \
+            self.classnameEdit.text() != "" and
+            self.filenameEdit.text() != "" and
             self.pathnameEdit.text() != "")
         
     def on_classnameEdit_textChanged(self, text):
@@ -98,5 +98,5 @@
         @return tuple giving the classname (string) and the file name (string)
         """
         return self.classnameEdit.text(), \
-            os.path.join(self.pathnameEdit.text(), \
+            os.path.join(self.pathnameEdit.text(),
                          self.filenameEdit.text())

eric ide

mercurial