Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
gennad zlobin
kdevelop
Commits
752fac69
Commit
752fac69
authored
Sep 10, 2007
by
Andreas Pakulat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a wait cursor while creating the image as it might take some time.
parent
e1ccd838
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
parts/classview/hierarchydlg.cpp
parts/classview/hierarchydlg.cpp
+3
-0
No files found.
parts/classview/hierarchydlg.cpp
View file @
752fac69
...
...
@@ -25,6 +25,7 @@
#include <qlayout.h>
#include <qfileinfo.h>
#include <qlistview.h>
#include <qapplication.h>
#include <qsplitter.h>
#include "kdevlanguagesupport.h"
...
...
@@ -103,6 +104,7 @@ void HierarchyDialog::save()
if
(
dlg
.
exec
()
&&
dlg
.
selectedURL
().
isLocalFile
())
{
QFileInfo
fi
(
dlg
.
selectedURL
().
pathOrURL
());
QApplication
::
setOverrideCursor
(
Qt
::
waitCursor
);
KDevLanguageSupport
*
ls
=
m_part
->
languageSupport
();
for
(
QMap
<
QString
,
ClassDom
>::
const_iterator
it
=
classes
.
begin
();
it
!=
classes
.
end
();
++
it
)
{
...
...
@@ -120,6 +122,7 @@ void HierarchyDialog::save()
}
}
digraph
->
process
(
fi
.
absFilePath
(),
fi
.
extension
());
QApplication
::
restoreOverrideCursor
();
}
}
...
...
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