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
0abf5027
Commit
0abf5027
authored
Aug 09, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove no longer existing 'language' option from the simple prefs
parent
ffabaec1
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
342 deletions
+121
-342
extras/package/macosx/Resources/English.lproj/Preferences.xib
...as/package/macosx/Resources/English.lproj/Preferences.xib
+119
-333
modules/gui/macosx/simple_prefs.h
modules/gui/macosx/simple_prefs.h
+2
-6
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+0
-3
No files found.
extras/package/macosx/Resources/English.lproj/Preferences.xib
View file @
0abf5027
This diff is collapsed.
Click to expand it.
modules/gui/macosx/simple_prefs.h
View file @
0abf5027
...
@@ -92,12 +92,8 @@
...
@@ -92,12 +92,8 @@
IBOutlet
id
o_intf_art_txt
;
IBOutlet
id
o_intf_art_txt
;
IBOutlet
id
o_intf_embedded_ckb
;
IBOutlet
id
o_intf_embedded_ckb
;
IBOutlet
id
o_intf_fspanel_ckb
;
IBOutlet
id
o_intf_fspanel_ckb
;
IBOutlet
id
o_intf_appleremote_ckb
;
IBOutlet
id
o_intf_appleremote_ckb
;
IBOutlet
id
o_intf_mediakeys_ckb
;
IBOutlet
id
o_intf_mediakeys_ckb
;
IBOutlet
id
o_intf_lang_pop
;
IBOutlet
id
o_intf_lang_txt
;
IBOutlet
id
o_intf_network_box
;
IBOutlet
id
o_intf_network_box
;
IBOutlet
id
o_intf_view
;
IBOutlet
id
o_intf_view
;
IBOutlet
id
o_intf_update_ckb
;
IBOutlet
id
o_intf_update_ckb
;
...
...
modules/gui/macosx/simple_prefs.m
View file @
0abf5027
...
@@ -272,7 +272,6 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
...
@@ -272,7 +272,6 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
[
o_intf_embedded_ckb
setTitle
:
_NS
(
"Show video within the main window"
)];
[
o_intf_embedded_ckb
setTitle
:
_NS
(
"Show video within the main window"
)];
[
o_intf_nativefullscreen_ckb
setTitle
:
_NS
(
"Use the native fullscreen mode on OS X Lion"
)];
[
o_intf_nativefullscreen_ckb
setTitle
:
_NS
(
"Use the native fullscreen mode on OS X Lion"
)];
[
o_intf_fspanel_ckb
setTitle
:
_NS
(
"Show Fullscreen Controller"
)];
[
o_intf_fspanel_ckb
setTitle
:
_NS
(
"Show Fullscreen Controller"
)];
[
o_intf_lang_txt
setStringValue
:
_NS
(
"Language"
)];
[
o_intf_network_box
setTitle
:
_NS
(
"Privacy / Network Interaction"
)];
[
o_intf_network_box
setTitle
:
_NS
(
"Privacy / Network Interaction"
)];
[
o_intf_appleremote_ckb
setTitle
:
_NS
(
"Control playback with the Apple Remote"
)];
[
o_intf_appleremote_ckb
setTitle
:
_NS
(
"Control playback with the Apple Remote"
)];
...
@@ -470,7 +469,6 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
...
@@ -470,7 +469,6 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
/**********************
/**********************
* interface settings *
* interface settings *
**********************/
**********************/
[
self
setupButton
:
o_intf_lang_pop
forStringList
:
"language"
];
[
self
setupButton
:
o_intf_art_pop
forIntList
:
"album-art"
];
[
self
setupButton
:
o_intf_art_pop
forIntList
:
"album-art"
];
[
self
setupButton
:
o_intf_fspanel_ckb
forBoolValue
:
"macosx-fspanel"
];
[
self
setupButton
:
o_intf_fspanel_ckb
forBoolValue
:
"macosx-fspanel"
];
...
@@ -854,7 +852,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
...
@@ -854,7 +852,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
**********************/
**********************/
if
(
b_intfSettingChanged
)
if
(
b_intfSettingChanged
)
{
{
SaveStringList
(
o_intf_lang_pop
,
"language"
);
SaveIntList
(
o_intf_art_pop
,
"album-art"
);
SaveIntList
(
o_intf_art_pop
,
"album-art"
);
config_PutInt
(
p_intf
,
"macosx-fspanel"
,
[
o_intf_fspanel_ckb
state
]
);
config_PutInt
(
p_intf
,
"macosx-fspanel"
,
[
o_intf_fspanel_ckb
state
]
);
...
...
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