E5Gui/E5LineEdit.py

changeset 2953
703452a2876f
parent 2401
4f428de32b69
child 2990
583beaf0b4b8
--- a/E5Gui/E5LineEdit.py	Sat Sep 28 17:40:42 2013 +0200
+++ b/E5Gui/E5LineEdit.py	Sat Sep 28 19:06:25 2013 +0200
@@ -32,7 +32,7 @@
         """
         Protected method to handle events.
         
-        @param reference to the event (QEvent)
+        @param evt reference to the event (QEvent)
         @return flag indicating, whether the event was recognized (boolean)
         """
         if evt.type() == QEvent.LayoutRequest:
@@ -122,7 +122,7 @@
         """
         Protected method to handle events.
         
-        @param reference to the event (QEvent)
+        @param evt reference to the event (QEvent)
         @return flag indicating, whether the event was recognized (boolean)
         """
         if evt.type() == QEvent.LayoutDirectionChange:
@@ -231,6 +231,7 @@
         Public method to get the text margin for a side.
         
         @param position side to get margin for (E5LineEdit.LeftSide, E5LineEdit.RightSide)
+        @return text margin (integer)
         """
         spacing = self.__rightLayout.spacing()
         w = 0
@@ -246,7 +247,7 @@
         """
         Public method to get the inactive text.
         
-        return inactive text (string)
+        @return inactive text (string)
         """
         if qVersion() < "4.7.0":
             return self.__inactiveText

eric ide

mercurial