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
Kdenlive
Commits
7df43a54
Commit
7df43a54
authored
Oct 09, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix compilation with Qt < 5.15
parent
ac7fc973
Pipeline
#36952
passed with stage
in 21 minutes and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/markerdialog.cpp
View file @
7df43a54
...
...
@@ -115,7 +115,11 @@ void MarkerDialog::slotUpdateThumb()
QImage
MarkerDialog
::
markerImage
()
const
{
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
return
clip_thumb
->
pixmap
()
->
toImage
();
#else
return
clip_thumb
->
pixmap
(
Qt
::
ReturnByValue
).
toImage
();
#endif
}
CommentedTime
MarkerDialog
::
newMarker
()
...
...
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