diff options
Diffstat (limited to '')
-rw-r--r-- | src/stringprocbuild.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stringprocbuild.cpp b/src/stringprocbuild.cpp index 071e941..419d819 100644 --- a/src/stringprocbuild.cpp +++ b/src/stringprocbuild.cpp | |||
@@ -10,7 +10,7 @@ StringProcBuild::~StringProcBuild() | |||
10 | { | 10 | { |
11 | } | 11 | } |
12 | 12 | ||
13 | std::string StringProcBuild::replVars( const std::string &sSrc, const std::string &sCont, VarMap *mExtra ) | 13 | std::string StringProcBuild::replVars( const std::string &sSrc, const StringList *pCont, 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, mExtra ); | 34 | sDes += getBuild()->getVar( pCont, sBuf, mExtra ); |
35 | nMode = 0; | 35 | nMode = 0; |
36 | } | 36 | } |
37 | else | 37 | else |