[vlc-commits] macosx: Rename and invert isNotEmbedded

Marvin Scholz git at videolan.org
Tue Aug 8 10:38:05 CEST 2017


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Aug  7 21:57:07 2017 +0200| [def38444ef1760490354037c3220ad7e68f64a39] | committer: Jean-Baptiste Kempf

macosx: Rename and invert isNotEmbedded

This makes it easier to understand the meaning and read the code.

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=def38444ef1760490354037c3220ad7e68f64a39
---

 modules/gui/macosx/VLCVoutWindowController.m | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/gui/macosx/VLCVoutWindowController.m b/modules/gui/macosx/VLCVoutWindowController.m
index 78283e9e02..23c4a7de39 100644
--- a/modules/gui/macosx/VLCVoutWindowController.m
+++ b/modules/gui/macosx/VLCVoutWindowController.m
@@ -241,7 +241,7 @@ void WindowClose(vout_window_t *p_wnd)
 
 - (VLCVoutView *)setupVoutForWindow:(vout_window_t *)p_wnd withProposedVideoViewPosition:(NSRect)videoViewPosition
 {
-    BOOL isNotEmbedded = NO;
+    BOOL isEmbedded = YES;
     BOOL isNativeFullscreen = [[VLCMain sharedInstance] nativeFullscreenMode];
     BOOL windowDecorations = var_InheritBool(getIntf(), "video-deco");
     BOOL videoWallpaper = var_InheritBool(getIntf(), "video-wallpaper");
@@ -308,14 +308,14 @@ void WindowClose(vout_window_t *p_wnd)
             [newVideoWindow setContentMinSize: NSMakeSize(f_min_video_height, f_min_video_height)];
         }
 
-        isNotEmbedded = YES;
+        isEmbedded = NO;
     } else {
         if ((var_InheritBool(getIntf(), "embedded-video") && !mainWindowHasVideo)) {
             // setup embedded video
             newVideoWindow = [[VLCMain sharedInstance] mainWindow] ;
             voutView = [newVideoWindow videoView];
-            isNotEmbedded = NO;
             mainWindowHasVideo = YES;
+            isEmbedded = YES;
         } else {
             // setup detached window with controls
             NSWindowController *o_controller = [[NSWindowController alloc] initWithWindowNibName:@"DetachedVideoWindow"];
@@ -330,7 +330,7 @@ void WindowClose(vout_window_t *p_wnd)
             [newVideoWindow setLevel:NSNormalWindowLevel];
             [newVideoWindow useOptimizedDrawing: YES];
             voutView = [newVideoWindow videoView];
-            isNotEmbedded = YES;
+            isEmbedded = NO;
         }
     }
 
@@ -341,7 +341,7 @@ void WindowClose(vout_window_t *p_wnd)
 
     if (!videoWallpaper) {
         // set (only!) window origin if specified
-        if (isNotEmbedded) {
+        if (!isEmbedded) {
             NSRect window_rect = [newVideoWindow frame];
             if (videoViewPosition.origin.x > 0.)
                 window_rect.origin.x = videoViewPosition.origin.x;
@@ -383,7 +383,7 @@ void WindowClose(vout_window_t *p_wnd)
     if ([newVideoWindow class] == [VLCMainWindow class])
         [[[VLCMain sharedInstance] mainWindow] changePlaylistState: psVideoStartedOrStoppedEvent];
 
-    if (isNotEmbedded) {
+    if (!isEmbedded) {
         // events might be posted before window is created, so call them again
         [[[VLCMain sharedInstance] mainWindow] updateName];
         [[[VLCMain sharedInstance] mainWindow] updateWindow]; // update controls bar



More information about the vlc-commits mailing list