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
Marco Bubke
flatpak-qt-creator
Commits
b662312b
Commit
b662312b
authored
Jun 08, 2010
by
Tobias Hunger
Browse files
Show proper cursor when displaying projectloadwizard
Task-number: QTCREATORBUG-1597
parent
2bb121df
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/projectloadwizard.cpp
View file @
b662312b
...
...
@@ -43,6 +43,7 @@
#include <QtGui/QLabel>
#include <QtGui/QVBoxLayout>
#include <QtGui/QWizardPage>
#include <QtGui/QApplication>
using
namespace
Qt4ProjectManager
;
using
namespace
Qt4ProjectManager
::
Internal
;
...
...
@@ -63,10 +64,13 @@ ProjectLoadWizard::ProjectLoadWizard(Qt4Project *project, QWidget *parent, Qt::W
// We used to simply call ::exec() on the dialog
void
ProjectLoadWizard
::
execDialog
()
{
if
(
!
pageIds
().
isEmpty
())
if
(
!
pageIds
().
isEmpty
())
{
QApplication
::
setOverrideCursor
(
QCursor
(
Qt
::
ArrowCursor
));
exec
();
else
QApplication
::
restoreOverrideCursor
();
}
else
{
done
(
QDialog
::
Accepted
);
}
}
ProjectLoadWizard
::~
ProjectLoadWizard
()
...
...
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