home *** CD-ROM | disk | FTP | other *** search
- PMPlatformWidgets becomeDefault!
- PMPlatformWidgets isVersion ifTrue:[ PMPlatformWidgets asScratch ]!
-
- !OSTextEdit privateMethods !
-
- osContents
- "Private - Answer the text in the receiver in the native OS format."
- | size text |
- (osContents notNil and:[ self osSize = osContents size]) ifTrue: [^osContents].
- (size := self osSize) == 0 ifTrue: [^PlatformString new].
- text := self osCopyFrom: 1 to: size.
- self isEncoded ifTrue: [osContents := text].
- ^text! !
-
- OSTextEdit commentFor: #osContents is:
- 'Copyright (C) 1993,1994 Object Technology International, Inc.
- All rights reserved.
-
- The source code for this method is OTI confidential.'!
-