Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
b7e56314
Commit
b7e56314
authored
Nov 23, 2011
by
Rémi Denis-Courmont
Browse files
Qt4: fix encoding of recent menu text
parent
c56cafe4
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/menus.cpp
View file @
b7e56314
...
...
@@ -1518,16 +1518,18 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
{
for
(
int
i
=
0
;
i
<
l
.
count
();
++
i
)
{
char
*
psz_temp
=
decode_URI_duplicate
(
qtu
(
l
.
at
(
i
)
)
);
QString
mrl
=
l
.
at
(
i
);
char
*
psz
=
decode_URI_duplicate
(
qtu
(
mrl
)
);
QString
text
=
qfu
(
psz
);
free
(
psz
);
action
=
recentsMenu
->
addAction
(
QString
(
i
<
9
?
"&%1: "
:
"%1: "
).
arg
(
i
+
1
)
+
QApplication
::
fontMetrics
().
elidedText
(
psz_temp
,
Qt
::
ElideLeft
,
400
),
QApplication
::
fontMetrics
().
elidedText
(
text
,
Qt
::
ElideLeft
,
400
),
rmrl
->
signalMapper
,
SLOT
(
map
()
),
i
<
9
?
QString
(
"Ctrl+%1"
).
arg
(
i
+
1
)
:
""
);
rmrl
->
signalMapper
->
setMapping
(
action
,
l
.
at
(
i
)
);
free
(
psz_temp
);
}
recentsMenu
->
addSeparator
();
...
...
Write
Preview
Supports
Markdown
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