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
Tobias Hunger
qt-creator
Commits
bd0f0aa1
Commit
bd0f0aa1
authored
May 20, 2009
by
Oswald Buddenhagen
Browse files
fix return value of error() & co
parent
a03f8643
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/proparser/profileevaluator.cpp
View file @
bd0f0aa1
...
...
@@ -2208,7 +2208,8 @@ ProItem::ProItemReturn ProFileEvaluator::Private::evaluateConditionalFunction(
}
QString
msg
=
fixEnvVariables
(
args
.
first
());
q
->
fileMessage
(
QString
::
fromLatin1
(
"Project %1: %2"
).
arg
(
function
.
toUpper
(),
msg
));
return
ProItem
::
ReturnFalse
;
// ### Consider real termination in non-cumulative mode
return
returnBool
(
function
!=
QLatin1String
(
"error"
));
}
#if 0 // Way too dangerous to enable.
case T_SYSTEM: {
...
...
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