Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
K3b
Commits
c4547ef5
Commit
c4547ef5
authored
Dec 19, 2019
by
Laurent Montel
😁
Browse files
GIT_SILENT: Port deprecated QSet::toList method
parent
8ce5d042
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/k3bmetaitemmodel.cpp
View file @
c4547ef5
...
...
@@ -625,7 +625,7 @@ QStringList K3b::MetaItemModel::mimeTypes() const
{
types
+=
it
->
model
()
->
mimeTypes
().
toSet
();
}
return
types
.
toList
();
return
types
.
values
();
}
...
...
src/rip/videodvd/k3bvideodvdtitlemodel.cpp
View file @
c4547ef5
...
...
@@ -192,7 +192,7 @@ void VideoDVDTitleModel::setVideoDVD( const VideoDVD::VideoDVD& dvd )
QList
<
int
>
VideoDVDTitleModel
::
selectedTitles
()
const
{
return
d
->
selectedTitles
.
toList
();
return
d
->
selectedTitles
.
values
();
}
...
...
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