diff options
| author | Jasper van de Gronde <jasper.vandegronde@gmail.com> | 2011-07-24 11:20:29 +0000 |
|---|---|---|
| committer | Jasper van de Gronde <jasper.vandegronde@gmail.com> | 2011-07-24 11:20:29 +0000 |
| commit | 7da4992bd3be230b62210e8c64e9dc7b478f877c (patch) | |
| tree | e751f091b149abec9d773d6029884d62647ca2e4 /buildtool.cpp | |
| parent | Fixed path update (Bug #812517) (diff) | |
| download | inkscape-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.cpp | 2 |
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; } |
