summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorJasper van de Gronde <jasper.vandegronde@gmail.com>2011-07-24 11:20:29 +0000
committerJasper van de Gronde <jasper.vandegronde@gmail.com>2011-07-24 11:20:29 +0000
commit7da4992bd3be230b62210e8c64e9dc7b478f877c (patch)
treee751f091b149abec9d773d6029884d62647ca2e4 /buildtool.cpp
parentFixed path update (Bug #812517) (diff)
downloadinkscape-7da4992bd3be230b62210e8c64e9dc7b478f877c.tar.gz
inkscape-7da4992bd3be230b62210e8c64e9dc7b478f877c.zip
Return empty string instead of false where needed.
(bzr r10500)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 983b2f8a4..7d2ca7912 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -3139,7 +3139,7 @@ public:
val = iter->second;
String sval;
if (!getSubstitutions(val, sval))
- return false;
+ return String();
return sval;
}