From cd09214b4ed1a5419ab4fff7af12e61f2e5a5ce1 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 30 Oct 2009 21:56:35 -0500 Subject: [PATCH] The cody pretty much now embodies the comment --- src/gonvert_glade.py | 24 ------------------------ 1 file changed, 24 deletions(-) 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: -- 1.7.9.5