home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / readme / fileins / os2dbcs.fx1 < prev    next >
Encoding:
Text File  |  1995-10-24  |  662 b   |  20 lines

  1. PMPlatformWidgets becomeDefault!
  2. PMPlatformWidgets isVersion ifTrue:[ PMPlatformWidgets asScratch ]!
  3.  
  4. !OSTextEdit privateMethods !
  5.  
  6. osContents
  7.         "Private - Answer the text in the receiver in the native OS format."
  8.     | size text |
  9.     (osContents notNil and:[ self osSize = osContents size]) ifTrue: [^osContents].
  10.     (size := self osSize) == 0 ifTrue: [^PlatformString new].
  11.     text := self osCopyFrom: 1 to: size.
  12.     self isEncoded ifTrue: [osContents := text].
  13.     ^text! !
  14.  
  15. OSTextEdit commentFor: #osContents is:
  16. 'Copyright (C) 1993,1994 Object Technology International, Inc.
  17. All rights reserved.
  18.  
  19. The source code for this method is OTI confidential.'!
  20.