factor: rename framework: and import: to uppercase

locals-and-roots
Doug Coleman 2016-06-21 12:14:54 -07:00
parent 07072cfe73
commit b65adb1b19
2 changed files with 26 additions and 26 deletions

View File

@ -4,8 +4,8 @@ USING: cocoa cocoa.application cocoa.types cocoa.classes cocoa.windows
core-graphics.types kernel math.bitwise literals ; core-graphics.types kernel math.bitwise literals ;
IN: webkit-demo IN: webkit-demo
framework: /System/Library/Frameworks/WebKit.framework FRAMEWORK: /System/Library/Frameworks/WebKit.framework
import: WebView IMPORT: WebView
: rect ( -- rect ) 0 0 700 500 <CGRect> ; : rect ( -- rect ) 0 0 700 500 <CGRect> ;

View File

@ -50,31 +50,31 @@ CONSTANT: QTErrorDeviceNotConnected 1300 ;
CONSTANT: QTErrorDeviceInUseByAnotherApplication 1301 ; CONSTANT: QTErrorDeviceInUseByAnotherApplication 1301 ;
CONSTANT: QTErrorDeviceExcludedByAnotherDevice 1302 ; CONSTANT: QTErrorDeviceExcludedByAnotherDevice 1302 ;
framework: /System/Library/Frameworks/QTKit.framework FRAMEWORK: /System/Library/Frameworks/QTKit.framework
import: QTCaptureAudioPreviewOutput IMPORT: QTCaptureAudioPreviewOutput
import: QTCaptureConnection IMPORT: QTCaptureConnection
import: QTCaptureDecompressedAudioOutput IMPORT: QTCaptureDecompressedAudioOutput
import: QTCaptureDecompressedVideoOutput IMPORT: QTCaptureDecompressedVideoOutput
import: QTCaptureDevice IMPORT: QTCaptureDevice
import: QTCaptureDeviceInput IMPORT: QTCaptureDeviceInput
import: QTCaptureFileOutput IMPORT: QTCaptureFileOutput
import: QTCaptureInput IMPORT: QTCaptureInput
import: QTCaptureLayer IMPORT: QTCaptureLayer
import: QTCaptureMovieFileOutput IMPORT: QTCaptureMovieFileOutput
import: QTCaptureOutput IMPORT: QTCaptureOutput
import: QTCaptureSession IMPORT: QTCaptureSession
import: QTCaptureVideoPreviewOutput IMPORT: QTCaptureVideoPreviewOutput
import: QTCaptureView IMPORT: QTCaptureView
import: QTCompressionOptions IMPORT: QTCompressionOptions
import: QTDataReference IMPORT: QTDataReference
import: QTFormatDescription IMPORT: QTFormatDescription
import: QTMedia IMPORT: QTMedia
import: QTMovie IMPORT: QTMovie
import: QTMovieLayer IMPORT: QTMovieLayer
import: QTMovieView IMPORT: QTMovieView
import: QTSampleBuffer IMPORT: QTSampleBuffer
import: QTTrack IMPORT: QTTrack
: <movie> ( filename -- movie ) : <movie> ( filename -- movie )
QTMovie swap <NSString> f -> movieWithFile:error: -> retain ; QTMovie swap <NSString> f -> movieWithFile:error: -> retain ;