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 ;
IN: webkit-demo
framework: /System/Library/Frameworks/WebKit.framework
import: WebView
FRAMEWORK: /System/Library/Frameworks/WebKit.framework
IMPORT: WebView
: rect ( -- rect ) 0 0 700 500 <CGRect> ;

View File

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