# HG changeset patch # User Claus Gittinger # Date 1219254766 -7200 # Node ID 6be70d6b485c40bde28674a00e408c62f3eba580 # Parent 83ef8b80b0ddeb1fa64f84891dad6aa86bc06b9a *** empty log message *** diff -r 83ef8b80b0dd -r 6be70d6b485c FileApplicationNoteBook.st --- a/FileApplicationNoteBook.st Wed Aug 20 19:52:18 2008 +0200 +++ b/FileApplicationNoteBook.st Wed Aug 20 19:52:46 2008 +0200 @@ -4525,9 +4525,10 @@ checkModifiedBlock isNil ifTrue:[ checkModifiedBlock := [ - self enqueueMessage:#checkItemForChangesWithNewSetup + self + enqueueMessage:#checkItemForChangesWithNewSetup for:self - arguments:nil. + arguments:#(). ]. ]. textEditorModificationTime := self fileName modificationTime. @@ -5303,7 +5304,7 @@ ^ self ]. changedObject == self itemChanged ifTrue:[ - self enqueueMessage:#changeTextColorForChanged for:self arguments:nil. + self enqueueMessage:#changeTextColorForChanged for:self arguments:#(). self itemModified. ^ self ]. @@ -6003,5 +6004,5 @@ !FileApplicationNoteBook class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.225 2008-06-05 09:53:16 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.226 2008-08-20 17:52:46 cg Exp $' ! !