aboutsummaryrefslogtreecommitdiff
path: root/src/stringprocbuild.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stringprocbuild.cpp')
-rw-r--r--src/stringprocbuild.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stringprocbuild.cpp b/src/stringprocbuild.cpp
index d0a5951..071e941 100644
--- a/src/stringprocbuild.cpp
+++ b/src/stringprocbuild.cpp
@@ -10,7 +10,7 @@ StringProcBuild::~StringProcBuild()
10{ 10{
11} 11}
12 12
13std::string StringProcBuild::replVars( const std::string &sSrc, const std::string &sCont ) 13std::string StringProcBuild::replVars( const std::string &sSrc, const std::string &sCont, VarMap *mExtra )
14{ 14{
15 std::string sDes, sBuf; 15 std::string sDes, sBuf;
16 int nMode = 0; 16 int nMode = 0;
@@ -31,7 +31,7 @@ std::string StringProcBuild::replVars( const std::string &sSrc, const std::strin
31 { 31 {
32 if( sSrc[j] == '}' ) 32 if( sSrc[j] == '}' )
33 { 33 {
34 sDes += getBuild()->getVar( sCont, sBuf ); 34 sDes += getBuild()->getVar( sCont, sBuf, mExtra );
35 nMode = 0; 35 nMode = 0;
36 } 36 }
37 else 37 else