E5Gui/E5SqueezeLabels.py

branch
Py2 comp.
changeset 3065
070b35dde35e
parent 3060
5883ce99ee12
child 3145
a9de05d4a22f
--- a/E5Gui/E5SqueezeLabels.py	Sun Nov 03 16:23:07 2013 +0100
+++ b/E5Gui/E5SqueezeLabels.py	Tue Nov 05 22:23:38 2013 +0100
@@ -79,7 +79,8 @@
             (string)
         """
         self.__surrounding = surrounding
-        super(E5SqueezeLabelPath, self).setText(self.__surrounding.format(self.__path))
+        super(E5SqueezeLabelPath, self).setText(
+            self.__surrounding.format(self.__path))
     
     def setPath(self, path):
         """
@@ -88,7 +89,8 @@
         @param path path to be shown (string)
         """
         self.__path = path
-        super(E5SqueezeLabelPath, self).setText(self.__surrounding.format(self.__path))
+        super(E5SqueezeLabelPath, self).setText(
+            self.__surrounding.format(self.__path))
     
     def setTextPath(self, surrounding, path):
         """
@@ -100,7 +102,8 @@
         """
         self.__surrounding = surrounding
         self.__path = path
-        super(E5SqueezeLabelPath, self).setText(self.__surrounding.format(self.__path))
+        super(E5SqueezeLabelPath, self).setText(
+            self.__surrounding.format(self.__path))
     
     def paintEvent(self, event):
         """
@@ -117,7 +120,8 @@
                                           self.length))
             )
         else:
-            super(E5SqueezeLabelPath, self).setText(self.__surrounding.format(self.__path))
+            super(E5SqueezeLabelPath, self).setText(
+                self.__surrounding.format(self.__path))
         super(E5SqueezeLabelPath, self).paintEvent(event)
     
     def length(self, txt):

eric ide

mercurial