diff -r 7ad4e53d8f49 -r aef700d15416 WindowsIconReader.st --- a/WindowsIconReader.st Fri Jan 31 18:59:54 1997 +0100 +++ b/WindowsIconReader.st Sat Feb 01 15:07:04 1997 +0100 @@ -53,14 +53,12 @@ initialize "tell Image-class, that a new fileReader is present - for the '.bmp', '.BMP', '.ico' and '.ICO' extensions." + for the '.bmp' and '.ico' extensions." - Image fileFormats at:'.bmp' put:self. - Image fileFormats at:'.BMP' put:self. - Image fileFormats at:'.ico' put:self. - Image fileFormats at:'.ICO' put:self. + Image addReader:self suffix:'bmp'. + Image addReader:self suffix:'ico'. - "Modified: 23.4.1996 / 13:08:46 / cg" + "Modified: 1.2.1997 / 15:03:59 / cg" ! ! !WindowsIconReader class methodsFor:'testing'! @@ -647,6 +645,6 @@ !WindowsIconReader class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/WindowsIconReader.st,v 1.27 1997-01-28 00:48:47 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview2/WindowsIconReader.st,v 1.28 1997-02-01 14:07:04 cg Exp $' ! ! WindowsIconReader initialize!