Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9896506e
Commit
9896506e
authored
Aug 19, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: translate description text for configuration choices
parent
22da31ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+2
-2
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
9896506e
...
...
@@ -526,7 +526,7 @@ void StringListConfigControl::finish(module_config_t *p_module_config, bool byca
}
combo
->
addItem
(
qfu
((
p_module_config
->
ppsz_list_text
&&
p_module_config
->
ppsz_list_text
[
i_index
])
?
p_module_config
->
ppsz_list_text
[
i_index
]
:
_
(
p_module_config
->
ppsz_list_text
[
i_index
])
:
p_module_config
->
ppsz_list
[
i_index
]
),
QVariant
(
qfu
(
p_module_config
->
ppsz_list
[
i_index
]
))
);
if
(
p_item
->
value
.
psz
&&
!
strcmp
(
p_module_config
->
value
.
psz
,
...
...
@@ -566,7 +566,7 @@ void setfillVLCConfigCombo( const char *configname, intf_thread_t *p_intf,
for
(
int
i_index
=
0
;
i_index
<
p_config
->
i_list
;
i_index
++
)
{
combo
->
addItem
(
q
fu
(
p_config
->
ppsz_list_text
[
i_index
]
),
combo
->
addItem
(
q
tr
(
p_config
->
ppsz_list_text
[
i_index
]
),
QVariant
(
p_config
->
pi_list
[
i_index
]
)
);
if
(
p_config
->
value
.
i
==
p_config
->
pi_list
[
i_index
]
)
{
...
...
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