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
969c7bd3
Commit
969c7bd3
authored
Aug 31, 2012
by
François Cartegnie
🤞
Browse files
Qt: MLmodel: fix headers encoding
parent
df0f82ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/playlist/ml_model.cpp
View file @
969c7bd3
...
...
@@ -146,7 +146,7 @@ QVariant MLModel::headerData( int section, Qt::Orientation orientation,
int
role
)
const
{
if
(
orientation
==
Qt
::
Horizontal
&&
role
==
Qt
::
DisplayRole
)
return
QVariant
(
psz_column_title
(
columnToMeta
(
section
)
)
);
return
QVariant
(
qfu
(
psz_column_title
(
columnToMeta
(
section
)
)
)
);
else
return
QVariant
();
}
...
...
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