* src/EditPerson.py: move strip_id from Utils

* src/GrampsCfg.py: use ComboBox for toolbar selection
* src/Sources.py: switch to ComboBoxes from OptionMenus
* src/Utils.py: removed unused functions
* src/gramps.glade: switch to ComboBoxes


svn: r3856
This commit is contained in:
Don Allingham
2005-01-02 05:16:25 +00:00
parent 12be7e620a
commit 63b3c2e687
6 changed files with 91 additions and 259 deletions

View File

@@ -1001,8 +1001,8 @@ class EditPerson:
bplace_text = unicode(self.bplace.get_text())
dplace_text = unicode(self.dplace.get_text())
prev_btext = Utils.strip_id(bplace_text)
prev_dtext = Utils.strip_id(dplace_text)
prev_btext = self.strip_id(bplace_text)
prev_dtext = self.strip_id(dplace_text)
# Update birth with new values, make sure death values don't change
if self.update_birth:
@@ -1016,6 +1016,13 @@ class EditPerson:
self.update_death_info()
self.bplace.set_text(prev_btext)
def strip_id(self,text):
index = text.rfind('[')
if (index > 0):
text = text[:index]
text = text.rstrip()
return text
def on_add_addr_clicked(self,obj):
"""Invokes the address editor to add a new address"""
import AddrEdit