Browse Source

Fix compiling plContainer.

Darryl Pogue 13 years ago
parent
commit
d17711b04c
  1. 3
      Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp

3
Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp

@ -797,7 +797,8 @@ bool plIniSectionConfigSource::ReadSubSource( const char * name )
std::vector<std::string> sections; std::vector<std::string> sections;
for ( int i=0; i<fSections.size(); i++ ) for ( int i=0; i<fSections.size(); i++ )
sections.push_back( fSections[i].c_str() ); sections.push_back( fSections[i].c_str() );
return fConfigInfo->ReadFrom(&plIniSectionConfigSource( name, sections )); plIniSectionConfigSource src(name, sections);
return fConfigInfo->ReadFrom(&src);
} }
///////////////////////////////////////////////// /////////////////////////////////////////////////

Loading…
Cancel
Save