whitespace fixup
authorFelix Domke <tmbinc@elitedvb.net>
Tue, 19 Jun 2007 23:39:28 +0000 (23:39 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Tue, 19 Jun 2007 23:39:28 +0000 (23:39 +0000)
lib/python/Components/Renderer/Listbox.py
lib/python/Components/Sources/List.py

index d784b614751f02a50eb1c76cdb10dd68e45f3567..a1f893777d97ccf1231db9879d0e6e2bae1ab4d0 100644 (file)
@@ -46,7 +46,7 @@ class Listbox(Renderer, object):
                self.__wrap_around = wrap_around
                if self.instance is not None:
                        self.instance.setWrapAround(self.__wrap_around)
-       
+
        wrap_around = property(lambda self: self.__wrap_around, setWrapAround)
 
        def selectionChanged(self):
@@ -56,14 +56,14 @@ class Listbox(Renderer, object):
                if self.instance is None:
                        return None
                return self.instance.getCurrentIndex()
-               
+
        def moveToIndex(self, index):
                if self.instance is None:
                        return
                self.instance.moveSelectionTo(index)
 
        index = property(getIndex, moveToIndex)
-       
+
        def move(self, direction):
                if self.instance is not None:
                        self.instance.moveSelection(direction)
index 6d083f05f41f209754a877383aec00ddc00cf251..e141da59fcb9a3a1ab1bfa0088c04219c537dd1b 100644 (file)
@@ -31,7 +31,7 @@ to generate HTML."""
        def selectionChanged(self, index):
                if self.disable_callbacks:
                        return
-                       
+
                for x in self.onSelectionChanged:
                        x()