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
Tobias Hunger
qt-creator
Commits
b4367cb9
Commit
b4367cb9
authored
Apr 13, 2010
by
con
Browse files
Some naming of the progress indicators.
parent
b28fa3f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cpptools/cppmodelmanager.cpp
View file @
b4367cb9
...
...
@@ -948,7 +948,7 @@ QFuture<void> CppModelManager::refreshSourceFiles(const QStringList &sourceFiles
m_synchronizer
.
addFuture
(
result
);
if
(
sourceFiles
.
count
()
>
1
)
{
m_core
->
progressManager
()
->
addTask
(
result
,
tr
(
"
Index
ing"
),
m_core
->
progressManager
()
->
addTask
(
result
,
tr
(
"
Pars
ing"
),
CppTools
::
Constants
::
TASK_INDEX
);
}
...
...
src/plugins/qt4projectmanager/qt4project.cpp
View file @
b4367cb9
...
...
@@ -791,11 +791,11 @@ void Qt4Project::asyncUpdate()
Core
::
ProgressManager
*
progressManager
=
Core
::
ICore
::
instance
()
->
progressManager
();
progressManager
->
addTask
(
m_asyncUpdateFutureInterface
->
future
(),
tr
(
"Evaluate"
),
Constants
::
PROFILE_EVALUATE
);
m_asyncUpdateFutureInterface
->
setProgressRange
(
0
,
0
);
progressManager
->
addTask
(
m_asyncUpdateFutureInterface
->
future
(),
tr
(
"Evaluating"
),
Constants
::
PROFILE_EVALUATE
);
if
(
debug
)
qDebug
()
<<
" adding task"
;
m_asyncUpdateFutureInterface
->
setProgressRange
(
0
,
0
);
m_asyncUpdateFutureInterface
->
reportStarted
();
if
(
m_asyncUpdateState
==
AsyncFullUpdatePending
)
{
...
...
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