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
Marco Bubke
flatpak-qt-creator
Commits
403d7558
Commit
403d7558
authored
Mar 09, 2010
by
Tobias Hunger
Browse files
Add overlay icon in windows if text is empty
... not if it is null.
parent
5a2926b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/progressmanager/progressmanager_win.cpp
View file @
403d7558
...
...
@@ -85,7 +85,7 @@ void Core::Internal::ProgressManagerPrivate::setApplicationLabel(const QString &
return
;
WId
winId
=
Core
::
ICore
::
instance
()
->
mainWindow
()
->
winId
();
if
(
text
.
is
Null
())
{
if
(
text
.
is
Empty
())
{
pITask
->
SetOverlayIcon
(
winId
,
NULL
,
NULL
);
}
else
{
QPixmap
pix
=
QPixmap
(
":/projectexplorer/images/compile_error.png"
);
...
...
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