[vlc-commits] macosx: Fix some (harmless) type mismatch warnings
Marvin Scholz
git at videolan.org
Mon Apr 2 02:46:41 CEST 2018
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Apr 2 02:41:27 2018 +0200| [0c9c6267a5da01fb8acc5ddb25b501c12bea2303] | committer: Marvin Scholz
macosx: Fix some (harmless) type mismatch warnings
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0c9c6267a5da01fb8acc5ddb25b501c12bea2303
---
modules/gui/macosx/VLCOpenWindowController.m | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/VLCOpenWindowController.m b/modules/gui/macosx/VLCOpenWindowController.m
index e21fc93115..be54b53a8e 100644
--- a/modules/gui/macosx/VLCOpenWindowController.m
+++ b/modules/gui/macosx/VLCOpenWindowController.m
@@ -199,8 +199,8 @@ static NSString *kCaptureTabViewId = @"capture";
[[_netModeMatrix cellAtRow:0 column:0] setTitle: _NS("Unicast")];
[[_netModeMatrix cellAtRow:1 column:0] setTitle: _NS("Multicast")];
- [_netUDPPortTextField setIntValue: config_GetInt("server-port")];
- [_netUDPPortStepper setIntValue: config_GetInt("server-port")];
+ [_netUDPPortTextField setIntegerValue: config_GetInt("server-port")];
+ [_netUDPPortStepper setIntegerValue: config_GetInt("server-port")];
[_captureModePopup removeAllItems];
[_captureModePopup addItemWithTitle: _NS("Input Devices")];
More information about the vlc-commits
mailing list