Merge changes from gramps20 made since 2.0.5

svn: r5105
This commit is contained in:
Alex Roitman
2005-08-18 05:58:28 +00:00
parent b9f4134fdd
commit 704e0c4787
111 changed files with 31121 additions and 20132 deletions

View File

@ -36,6 +36,7 @@ import gtk.glade
from gettext import gettext as _
import const
import Utils
import Spell
#-------------------------------------------------------------------------
#
@ -80,6 +81,7 @@ class NoteEditor:
self.entry = self.glade.get_widget('note')
self.entry.get_buffer().set_text(self.data.get_note())
self.entry.set_editable(not self.readonly)
self.spellcheck = Spell.Spell(self.entry)
cancel_button = self.glade.get_widget('cancel')
ok_button = self.glade.get_widget('ok')