Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6d044920
Commit
6d044920
authored
Apr 07, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
po: do not translate ""
parent
edada22b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+1
-1
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+1
-1
No files found.
modules/gui/macosx/prefs.m
View file @
6d044920
...
...
@@ -471,7 +471,7 @@ static VLCPrefs *_o_sharedMainInstance = nil;
@implementation
VLCTreePluginItem
-
(
id
)
initWithPlugin
:(
module_t
*
)
plugin
{
NSString
*
name
=
_NS
(
module_get_name
(
plugin
,
false
)
?:
""
);
NSString
*
name
=
_NS
(
module_get_name
(
plugin
,
false
));
if
(
self
=
[
super
initWithName
:
name
])
{
_configItems
=
module_config_get
(
plugin
,
&
_configSize
);
//_plugin = plugin;
...
...
modules/gui/macosx/simple_prefs.m
View file @
6d044920
...
...
@@ -400,7 +400,7 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
-
(
void
)
setupButton
:
(
NSButton
*
)
object
forBoolValue
:
(
const
char
*
)
name
{
[
object
setState
:
config_GetInt
(
p_intf
,
name
)];
[
object
setToolTip
:
_NS
(
config_GetLabel
(
p_intf
,
name
)
?:
""
)];
[
object
setToolTip
:
_NS
(
config_GetLabel
(
p_intf
,
name
))];
}
-
(
void
)
setupField
:(
NSTextField
*
)
o_object
forOption
:(
const
char
*
)
psz_option
...
...
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