Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
7f93818e
Commit
7f93818e
authored
Aug 14, 2022
by
Julius Künzel
💬
Browse files
[Qt6] Use QMultiMapIterator for QMultiMap iteration
parent
7c3d36ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/assets/view/widgets/keyframewidget.cpp
View file @
7f93818e
...
...
@@ -254,7 +254,11 @@ KeyframeWidget::KeyframeWidget(std::shared_ptr<AssetParameterModel> model, QMode
auto
*
l
=
new
QVBoxLayout
;
d
.
setLayout
(
l
);
l
->
addWidget
(
new
QLabel
(
i18n
(
"Select parameters to copy"
),
&
d
));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QMapIterator
<
QPersistentModelIndex
,
QString
>
i
(
paramList
);
#else
QMultiMapIterator
<
QPersistentModelIndex
,
QString
>
i
(
paramList
);
#endif
while
(
i
.
hasNext
())
{
i
.
next
();
auto
*
cb
=
new
QCheckBox
(
i
.
value
(),
this
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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