[vlc-commits] macosx: Correct spelling mistakes in fscontroller
Marvin Scholz
git at videolan.org
Sun Oct 30 23:35:43 CET 2016
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Sun Oct 30 23:21:10 2016 +0100| [4e69953a93166f34489ede2d58d98f0b5979515b] | committer: Marvin Scholz
macosx: Correct spelling mistakes in fscontroller
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4e69953a93166f34489ede2d58d98f0b5979515b
---
.../package/macosx/Resources/English.lproj/VLCFullScreenPanel.xib | 2 +-
modules/gui/macosx/VLCFSPanelController.h | 2 +-
modules/gui/macosx/VLCFSPanelController.m | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/extras/package/macosx/Resources/English.lproj/VLCFullScreenPanel.xib b/extras/package/macosx/Resources/English.lproj/VLCFullScreenPanel.xib
index 75d49a3..967d70b 100644
--- a/extras/package/macosx/Resources/English.lproj/VLCFullScreenPanel.xib
+++ b/extras/package/macosx/Resources/English.lproj/VLCFullScreenPanel.xib
@@ -10,7 +10,7 @@
<customObject id="-2" userLabel="File's Owner" customClass="VLCFSPanelController">
<connections>
<outlet property="backwardButton" destination="7QH-jb-QdM" id="VnK-HH-sNu"/>
- <outlet property="controllsView" destination="Npt-C5-K77" id="LzR-iZ-qy0"/>
+ <outlet property="controlsView" destination="Npt-C5-K77" id="Dnt-ku-O6u"/>
<outlet property="elapsedTime" destination="nJc-M4-sMF" id="DFf-yw-e6A"/>
<outlet property="forwardButton" destination="jSN-hV-r5D" id="3PN-jP-xPY"/>
<outlet property="mediaTitle" destination="Vd8-0f-Usz" id="NZ0-KY-l4T"/>
diff --git a/modules/gui/macosx/VLCFSPanelController.h b/modules/gui/macosx/VLCFSPanelController.h
index c59dd0a..10a098d 100644
--- a/modules/gui/macosx/VLCFSPanelController.h
+++ b/modules/gui/macosx/VLCFSPanelController.h
@@ -34,7 +34,7 @@
@property (readwrite) NSWindow *voutWindow;
@property (readwrite, weak) NSTimer *hideTimer;
- at property IBOutlet NSView *controllsView;
+ at property IBOutlet NSView *controlsView;
@property IBOutlet NSButton *playPauseButton;
@property IBOutlet NSButton *forwardButton;
@property IBOutlet NSButton *backwardButton;
diff --git a/modules/gui/macosx/VLCFSPanelController.m b/modules/gui/macosx/VLCFSPanelController.m
index 2cb33e5..a648708 100644
--- a/modules/gui/macosx/VLCFSPanelController.m
+++ b/modules/gui/macosx/VLCFSPanelController.m
@@ -378,8 +378,8 @@
/* Inject view in view hierarchy */
[self.window setContentView:view];
- [_controllsView setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
- [self.window.contentView addSubview:_controllsView];
+ [_controlsView setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
+ [self.window.contentView addSubview:_controlsView];
}
#endif
@@ -403,7 +403,7 @@
/* Inject view in view hierarchy */
[self.window setContentView:view];
- [self.window.contentView addSubview:_controllsView];
+ [self.window.contentView addSubview:_controlsView];
}
- (void)dealloc
More information about the vlc-commits
mailing list