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
5ba47738
Commit
5ba47738
authored
Apr 01, 2010
by
Tobias Hunger
Browse files
Fix parsing of CMake progress indicators
Reviewed-by: con
parent
8d70ab27
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cmakeprojectmanager/makestep.cpp
View file @
5ba47738
...
...
@@ -162,7 +162,7 @@ bool MakeStep::immutable() const
return
true
;
}
void
MakeStep
::
stdOut
(
const
QString
&
line
)
void
MakeStep
::
stdOut
put
(
const
QString
&
line
)
{
if
(
m_percentProgress
.
indexIn
(
line
)
!=
-
1
)
{
bool
ok
=
false
;
...
...
src/plugins/cmakeprojectmanager/makestep.h
View file @
5ba47738
...
...
@@ -79,7 +79,7 @@ protected:
bool
fromMap
(
const
QVariantMap
&
map
);
// For parsing [ 76%]
virtual
void
stdOut
(
const
QString
&
line
);
virtual
void
stdOut
put
(
const
QString
&
line
);
private:
void
ctor
();
...
...
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