updated to the new pikotools api: snake_case names of methods from SpaceParser

This commit is contained in:
2021-05-21 04:51:58 +02:00
parent 27720afaf2
commit fe67b5d72a
11 changed files with 12 additions and 12 deletions

View File

@@ -112,7 +112,7 @@ bool read = false;
file_name += '/';
file_name += file;
pt::SpaceParser::Status status = loc_parser.ParseSpaceFile(file_name, temp_space, false);
pt::SpaceParser::Status status = loc_parser.parse_space_file(file_name, temp_space, false);
if( status == pt::SpaceParser::ok )
{
@@ -184,7 +184,7 @@ bool read = false;
file_name += '/';
file_name += "substitute";
if( loc_parser.ParseSpaceFile(file_name, temp_space, false) == pt::SpaceParser::ok )
if( loc_parser.parse_space_file(file_name, temp_space, false) == pt::SpaceParser::ok )
{
read = true;
CreateSubstVector(subst_url, temp_space.to_wstr(L"url_original"), temp_space.to_wstr(L"url_changeto"));