diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-06-26 15:10:10 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-06-26 15:10:10 +0000 |
commit | dbaf54819ca52e74deffc5de69ba62884d3aaa7e (patch) | |
tree | d532816dc34b1ee3b488ac020e37da4c99c939a9 /src | |
parent | 22bb60f3e41dbd471b225c251f57b883dc83e235 (diff) | |
download | xine-lib-dbaf54819ca52e74deffc5de69ba62884d3aaa7e.tar.gz xine-lib-dbaf54819ca52e74deffc5de69ba62884d3aaa7e.tar.bz2 |
Mac OS X video_window.m: Change #include to #import
CVS patchset: 6753
CVS date: 2004/06/26 15:10:10
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/macosx/video_window.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/macosx/video_window.m b/src/video_out/macosx/video_window.m index 171bd2ceb..fc1bd9d4e 100644 --- a/src/video_out/macosx/video_window.m +++ b/src/video_out/macosx/video_window.m @@ -23,12 +23,12 @@ * Thanks for the good research! */ -#include <Cocoa/Cocoa.h> -#include <OpenGL/OpenGL.h> -#include <OpenGL/gl.h> -#include <OpenGL/glext.h> +#import <Cocoa/Cocoa.h> +#import <OpenGL/OpenGL.h> +#import <OpenGL/gl.h> +#import <OpenGL/glext.h> -#include "video_window.h" +#import "video_window.h" NSString *XineViewDidResizeNotification = @"XineViewDidResizeNotification"; |