From: Ed Page Date: Sat, 31 Oct 2009 02:56:35 +0000 (-0500) Subject: The cody pretty much now embodies the comment X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=commitdiff_plain;h=cd09214b4ed1a5419ab4fff7af12e61f2e5a5ce1 The cody pretty much now embodies the comment --- diff --git a/src/gonvert_glade.py b/src/gonvert_glade.py index 227c21c..8d4ba18 100755 --- a/src/gonvert_glade.py +++ b/src/gonvert_glade.py @@ -290,18 +290,6 @@ class Gonvert(object): ) def _find_next(self): - """ - check if 'new find' or 'last find' or 'next-find' - - new-find = run the find algorithm which also selects the first found unit - = self._findIndex = 0 and self._find_result = [] - - last-find = restart from top again - = self._findIndex = len(self._find_result) - - next-find = continue to next found location - = self._findIndex = 0 and len(self._find_result)>0 - """ if len(self._find_result) == 0: self._find_first() else: @@ -320,18 +308,6 @@ class Gonvert(object): ) def _find_previous(self): - """ - check if 'new find' or 'last find' or 'next-find' - - new-find = run the find algorithm which also selects the first found unit - = self._findIndex = 0 and self._find_result = [] - - last-find = restart from top again - = self._findIndex = len(self._find_result) - - next-find = continue to next found location - = self._findIndex = 0 and len(self._find_result)>0 - """ if len(self._find_result) == 0: self._find_first() else: