From 17e64a22e3eaa2f7eb6036c16cd1c99931a68dfd Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 6 Sep 2003 23:11:29 +0000 Subject: [PATCH] * src/plugins/FilterEditor.py (MyPlaces): fix handling of get_text, set_text tasks. Use the default from the base class. svn: r2095 --- src/plugins/FilterEditor.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/plugins/FilterEditor.py b/src/plugins/FilterEditor.py index d5de1434b..351f7d499 100644 --- a/src/plugins/FilterEditor.py +++ b/src/plugins/FilterEditor.py @@ -138,15 +138,9 @@ class MyPlaces(gtk.Entry): def __init__(self,places): gtk.Entry.__init__(self) - AutoComp.AutoEntry(self,places) + self.comp = AutoComp.AutoEntry(self,places) self.show() - def get_text(self): - return self.entry.get_text() - - def set_text(self,val): - self.entry.set_text(val) - #------------------------------------------------------------------------- # # MyID - Person/GRAMPS ID selection box with a standard interface