[vlc-commits] iOS dialog provider: compilation fix
Felix Paul Kühne
git at videolan.org
Thu Nov 19 20:10:23 CET 2015
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Nov 19 18:44:27 2015 +0100| [21d3166dd355b3795e7facd055152755de8648a0] | committer: Felix Paul Kühne
iOS dialog provider: compilation fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=21d3166dd355b3795e7facd055152755de8648a0
---
modules/gui/ios_dialog_provider/dialogProvider.m | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/ios_dialog_provider/dialogProvider.m b/modules/gui/ios_dialog_provider/dialogProvider.m
index 73afc15..21c8423 100644
--- a/modules/gui/ios_dialog_provider/dialogProvider.m
+++ b/modules/gui/ios_dialog_provider/dialogProvider.m
@@ -61,7 +61,7 @@
@end
-#ifndef TARGET_OS_TV
+#if !TARGET_OS_TV
@interface VLCBlockingAlertView : UIAlertView <UIAlertViewDelegate>
@property (copy, nonatomic) void (^completion)(BOOL, NSInteger);
@@ -608,7 +608,7 @@ bool checkProgressPanel (void *priv)
@end
-#ifndef TARGET_OS_TV
+#if !TARGET_OS_TV
@implementation VLCBlockingAlertView
- (id)initWithTitle:(NSString *)title
More information about the vlc-commits
mailing list