* src/plugins/FilterEditor.py (MyPlaces): fix handling of get_text,

set_text tasks. Use the default from the base class.


svn: r2095
This commit is contained in:
Don Allingham 2003-09-06 23:11:29 +00:00
parent f236e0efc1
commit 17e64a22e3

View File

@ -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