Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
adacaf05
Commit
adacaf05
authored
Aug 05, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: removed no longer existing option 'server-port' from sprefs
parent
ea429a16
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
287 deletions
+15
-287
extras/package/macosx/Resources/English.lproj/Preferences.nib/designable.nib
...sx/Resources/English.lproj/Preferences.nib/designable.nib
+15
-281
extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib
.../Resources/English.lproj/Preferences.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/simple_prefs.h
modules/gui/macosx/simple_prefs.h
+0
-2
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+0
-4
No files found.
extras/package/macosx/Resources/English.lproj/Preferences.nib/designable.nib
View file @
adacaf05
This diff is collapsed.
Click to expand it.
extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib
View file @
adacaf05
No preview for this file type
modules/gui/macosx/simple_prefs.h
View file @
adacaf05
...
@@ -81,8 +81,6 @@
...
@@ -81,8 +81,6 @@
IBOutlet
id
o_input_rtsp_ckb
;
IBOutlet
id
o_input_rtsp_ckb
;
IBOutlet
id
o_input_skipLoop_txt
;
IBOutlet
id
o_input_skipLoop_txt
;
IBOutlet
id
o_input_skipLoop_pop
;
IBOutlet
id
o_input_skipLoop_pop
;
IBOutlet
id
o_input_serverport_fld
;
IBOutlet
id
o_input_serverport_txt
;
IBOutlet
id
o_input_view
;
IBOutlet
id
o_input_view
;
IBOutlet
id
o_intf_style_txt
;
IBOutlet
id
o_intf_style_txt
;
...
...
modules/gui/macosx/simple_prefs.m
View file @
adacaf05
...
@@ -219,7 +219,6 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
...
@@ -219,7 +219,6 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
[
o_input_postproc_txt
setStringValue
:
_NS
(
"Post-Processing Quality"
)];
[
o_input_postproc_txt
setStringValue
:
_NS
(
"Post-Processing Quality"
)];
[
o_input_rtsp_ckb
setTitle
:
_NS
(
"Use RTP over RTSP (TCP)"
)];
[
o_input_rtsp_ckb
setTitle
:
_NS
(
"Use RTP over RTSP (TCP)"
)];
[
o_input_skipLoop_txt
setStringValue
:
_NS
(
"Skip the loop filter for H.264 decoding"
)];
[
o_input_skipLoop_txt
setStringValue
:
_NS
(
"Skip the loop filter for H.264 decoding"
)];
[
o_input_serverport_txt
setStringValue
:
_NS
(
"Default Server Port"
)];
/* interface */
/* interface */
[
o_intf_style_txt
setStringValue
:
_NS
(
"Interface style"
)];
[
o_intf_style_txt
setStringValue
:
_NS
(
"Interface style"
)];
...
@@ -516,8 +515,6 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
...
@@ -516,8 +515,6 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
/***************************
/***************************
* input & codecs settings *
* input & codecs settings *
***************************/
***************************/
[
o_input_serverport_fld
setIntValue
:
config_GetInt
(
p_intf
,
"server-port"
)];
[
o_input_serverport_fld
setToolTip
:
[
NSString
stringWithUTF8String
:
config_GetLabel
(
p_intf
,
"server-port"
)]];
[
self
setupField
:
o_input_httpproxy_fld
forOption
:
"http-proxy"
];
[
self
setupField
:
o_input_httpproxy_fld
forOption
:
"http-proxy"
];
[
self
setupField
:
o_input_httpproxypwd_sfld
forOption
:
"http-proxy-pwd"
];
[
self
setupField
:
o_input_httpproxypwd_sfld
forOption
:
"http-proxy-pwd"
];
[
o_input_postproc_fld
setIntValue
:
config_GetInt
(
p_intf
,
"postproc-q"
)];
[
o_input_postproc_fld
setIntValue
:
config_GetInt
(
p_intf
,
"postproc-q"
)];
...
@@ -858,7 +855,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
...
@@ -858,7 +855,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
***************************/
***************************/
if
(
b_inputSettingChanged
)
if
(
b_inputSettingChanged
)
{
{
config_PutInt
(
p_intf
,
"server-port"
,
[
o_input_serverport_fld
intValue
]
);
config_PutPsz
(
p_intf
,
"http-proxy"
,
[[
o_input_httpproxy_fld
stringValue
]
UTF8String
]
);
config_PutPsz
(
p_intf
,
"http-proxy"
,
[[
o_input_httpproxy_fld
stringValue
]
UTF8String
]
);
config_PutPsz
(
p_intf
,
"http-proxy-pwd"
,
[[
o_input_httpproxypwd_sfld
stringValue
]
UTF8String
]
);
config_PutPsz
(
p_intf
,
"http-proxy-pwd"
,
[[
o_input_httpproxypwd_sfld
stringValue
]
UTF8String
]
);
config_PutInt
(
p_intf
,
"postproc-q"
,
[
o_input_postproc_fld
intValue
]
);
config_PutInt
(
p_intf
,
"postproc-q"
,
[
o_input_postproc_fld
intValue
]
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment