summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2015-05-27 14:30:27 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2015-05-27 14:34:42 +0200
commitb50390d5da9b92249b9e6b895f72b3dcad79936e (patch)
tree8f9234f264fdaa9d81e9504b5eca04514167674b /DOCS
parentb65c548b7d65d84e4d025c9f4ab771ad1c588bc1 (diff)
downloadmpv-b50390d5da9b92249b9e6b895f72b3dcad79936e.tar.bz2
mpv-b50390d5da9b92249b9e6b895f72b3dcad79936e.tar.xz
DOCS: fix wrong libmpv's cocoa example comment
libmpv can be embedded in a cocoa view (without the mpv window). This has been the case for serveral months, and the comment is just wrong now.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/client_api_examples/cocoa/cocoabasic.m6
1 files changed, 2 insertions, 4 deletions
diff --git a/DOCS/client_api_examples/cocoa/cocoabasic.m b/DOCS/client_api_examples/cocoa/cocoabasic.m
index f2f251a603..5a78250c3a 100644
--- a/DOCS/client_api_examples/cocoa/cocoabasic.m
+++ b/DOCS/client_api_examples/cocoa/cocoabasic.m
@@ -1,7 +1,5 @@
-// Plays a video from the command line in a window provided by mpv.
-// You likely want to play the video in your own window instead,
-// but that's not quite ready yet.
-// You may need a basic Info.plist and MainMenu.xib to make this work.
+// Plays a video from the command line in a view provided by the client
+// application.
// Build with: clang -o cocoabasic cocoabasic.m `pkg-config --libs --cflags mpv` -framework cocoa