[vlc-commits] vout_ios2: compilation fix
Felix Paul Kühne
git at videolan.org
Mon Sep 30 11:03:15 CEST 2013
vlc/vlc-2.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Sep 30 10:58:53 2013 +0200| [c891dc7d34cd540a515818d0323e0020b4c7bb2a] | committer: Felix Paul Kühne
vout_ios2: compilation fix
(cherry picked from commit 90de948ad5bb88ef8d6888e1ac63dbf746cabed7)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=c891dc7d34cd540a515818d0323e0020b4c7bb2a
---
modules/video_output/ios2.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/ios2.m b/modules/video_output/ios2.m
index d963201..3656bfe 100644
--- a/modules/video_output/ios2.m
+++ b/modules/video_output/ios2.m
@@ -485,7 +485,7 @@ static void OpenglESSwap(vlc_gl_t *gl)
- (void)applicationStateChanged:(NSNotification *)notification
{
- if ([[notification name] isEqualToString:UIApplicationWillResignActiveNotification] || [[o_notification name] isEqualToString:UIApplicationDidEnterBackgroundNotification] || [[o_notification name] isEqualToString:UIApplicationWillTerminateNotification])
+ if ([[notification name] isEqualToString:UIApplicationWillResignActiveNotification] || [[notification name] isEqualToString:UIApplicationDidEnterBackgroundNotification] || [[notification name] isEqualToString:UIApplicationWillTerminateNotification])
_appActive = NO;
else
_appActive = YES;
More information about the vlc-commits
mailing list