* src/ChooseParents.py: removed

* src/ListBox.py: removed


svn: r5885
This commit is contained in:
Don Allingham
2006-02-05 05:19:51 +00:00
parent 11ec0429f6
commit b7577dc19a
10 changed files with 331 additions and 3916 deletions

View File

@ -54,6 +54,7 @@ import Utils
import GrampsMime
import const
import ImgManip
import Spell
from DdTargets import DdTargets
from GrampsWidgets import SimpleButton
@ -937,6 +938,7 @@ class NoteTab(GrampsTab):
else:
self.flowed.set_active(True)
self.text.set_wrap_mode(gtk.WRAP_WORD)
self.spellcheck = Spell.Spell(self.text)
self.flowed.connect('toggled',self.flow_changed)
@ -968,7 +970,9 @@ class NoteTab(GrampsTab):
def update(self,obj):
if self.note_obj:
text = self.buf.get_text(self.buf.get_start_iter(),self.buf.get_end_iter())
start = self.buf.get_start_iter()
stop = self.buf.get_end_iter()
text = self.buf.get_text(start,stop)
self.note_obj.set(text)
else:
print "NOTE OBJ DOES NOT EXIST"