# HG changeset patch # User Claus Gittinger # Date 1077973105 -3600 # Node ID 9ea9d7e7ef95a45652d3003ddda93276271f0b3e # Parent e3b65e30bb9c8e497a3654e89232dcde41a84e04 characterEncoding stuff diff -r e3b65e30bb9c -r 9ea9d7e7ef95 FileApplicationNoteBook.st --- a/FileApplicationNoteBook.st Sat Feb 28 11:19:00 2004 +0100 +++ b/FileApplicationNoteBook.st Sat Feb 28 13:58:25 2004 +0100 @@ -4553,7 +4553,7 @@ doNotShowFontDialog == true ifTrue:[ action := #show ] ifFalse:[ - action := Dialog choose:(resources string:'''%1'' seems to require a %2 font (file encoding is %3).' + action := Dialog choose:(resources string:'''%1'' seems to require a %2 (or unicode) font (file encoding is %3).' with:self fileName baseName with:preferredFontEncoding allBold with:fileEncoding) @@ -4879,7 +4879,7 @@ aWidget modifiedChannel:self viewModifiedChannel. editView externalEncoding:self fileEncoding. - editView characterEncoding:'unicode'. + "/ editView characterEncoding:'unicode'. - thats the default anyway ! postBuildWith:aBuilder @@ -5439,5 +5439,5 @@ !FileApplicationNoteBook class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.155 2004-02-25 20:19:47 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.156 2004-02-28 12:58:25 cg Exp $' ! !