aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-10-04 11:38:07 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:11 -0300
commit8db091fd280d5e965c90b2da4b26dd030e4b0f54 (patch)
treeaf92f610b7b88feac675b638f3157974a277ce73
parentfc57e7dd0846f28c319db3bc5c902b3055042fc7 (diff)
Change "or" to "||".
-rw-r--r--abstractmetabuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/abstractmetabuilder.cpp b/abstractmetabuilder.cpp
index b0cbc24a0..f90729ce1 100644
--- a/abstractmetabuilder.cpp
+++ b/abstractmetabuilder.cpp
@@ -2092,7 +2092,7 @@ int AbstractMetaBuilder::findOutValueFromString(const QString& stringValue, bool
if (ok)
return value;
- if (stringValue == "true" or stringValue == "false") {
+ if (stringValue == "true" || stringValue == "false") {
ok = true;
return (stringValue == "true");
}