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
b4786590
Commit
b4786590
authored
Oct 18, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix deprecated method
parent
45f88cca
Pipeline
#9116
passed with stage
in 17 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/statusbarmessagelabel.cpp
View file @
b4786590
...
...
@@ -259,7 +259,7 @@ bool StatusBarMessageLabel::slotMessageTimeout()
if
(
iconName
==
nullptr
)
{
m_pixmap
->
setVisible
(
false
);
}
else
{
m_pixmap
->
setPixmap
(
SmallIcon
(
iconName
));
m_pixmap
->
setPixmap
(
QIcon
::
fromTheme
(
iconName
).
pixmap
(
KIconLoader
::
SizeSmall
));
m_pixmap
->
setVisible
(
true
);
}
m_queueSemaphore
.
release
();
...
...
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