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

@@ -168,7 +168,7 @@ bool TicketInfo::ParseTicketConf(long mount_dir_id, const std::wstring & path)
conf_tab[mount_dir_id].file_name = path;
pt::Space & space = conf_tab[mount_dir_id].conf;
return (conf_parser.ParseSpace(config_file.item_content.content_raw, space) == pt::SpaceParser::ok);
return (conf_parser.parse_space(config_file.item_content.content_raw, space) == pt::SpaceParser::ok);
}