[vlmc-devel] RenderWidget: Fix build failure, fix implementation
Rohit Yadav
git at videolan.org
Fri Aug 24 23:50:14 CEST 2012
vlmc | branch: master | Rohit Yadav <rohityadav89 at gmail.com> | Sat Aug 25 03:36:04 2012 +0530| [8efe557f5d79142e92e3d226d2ac69d2b14fb3bc] | committer: Rohit Yadav
RenderWidget: Fix build failure, fix implementation
> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=8efe557f5d79142e92e3d226d2ac69d2b14fb3bc
---
src/Gui/preview/RenderWidget.mm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Gui/preview/RenderWidget.mm b/src/Gui/preview/RenderWidget.mm
index 23996d7..ecc50f6 100644
--- a/src/Gui/preview/RenderWidget.mm
+++ b/src/Gui/preview/RenderWidget.mm
@@ -33,14 +33,15 @@
#import <AppKit/NSView.h>
@interface VLCNSView : NSView
-BOOL stretchesVideo;
- ( void ) setStretchesVideo : ( BOOL ) value;
- ( BOOL ) stretchesVideo;
- ( void ) addVoutSubview:( NSView * ) aView;
- ( void ) removeVoutSubview:( NSView * ) aView;
+ at property BOOL stretchesVideo;
@end
@implementation VLCNSView
+ at synthesize stretchesVideo = stretchesVideo;
- ( id ) initWithFrame:( NSRect ) frameRect
{
if ((self = [super initWithFrame:frameRect]) == nil){ return nil; }
More information about the Vlmc-devel
mailing list