aboutsummaryrefslogtreecommitdiff
path: root/src/perform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/perform.cpp')
-rw-r--r--src/perform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/perform.cpp b/src/perform.cpp
index 20ad51a..64e6bab 100644
--- a/src/perform.cpp
+++ b/src/perform.cpp
@@ -14,13 +14,13 @@ void Perform::addParam( const char *sParam )
14 lParam.push_back( sParam ); 14 lParam.push_back( sParam );
15} 15}
16 16
17void Perform::copyData( Perform *pSrc, Build &bld, const std::string &cont ) 17void Perform::copyData( Perform *pSrc, Build &bld, const std::string &cont, VarMap *mExtra )
18{ 18{
19 lParam.clear(); 19 lParam.clear();
20 for( std::list<std::string>::iterator i = pSrc->lParam.begin(); 20 for( std::list<std::string>::iterator i = pSrc->lParam.begin();
21 i != pSrc->lParam.end(); i++ ) 21 i != pSrc->lParam.end(); i++ )
22 { 22 {
23 lParam.push_back( bld.replVars( *i, cont ) ); 23 lParam.push_back( bld.replVars( *i, cont, mExtra ) );
24 } 24 }
25} 25}
26 26