mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 16:36:40 +00:00
Use approved safety comment for path escaping explanation
I thought I'd got this one already
This commit is contained in:
parent
90966ecc47
commit
dbdecfe94b
1 changed files with 5 additions and 2 deletions
|
@ -147,8 +147,11 @@ bool Config::GameSettings::readFile(QTextStream& stream, QMultiMap<QString, QStr
|
||||||
|| key == QLatin1String("load-savegame"))
|
|| key == QLatin1String("load-savegame"))
|
||||||
{
|
{
|
||||||
// Path line (e.g. 'data=...'), so needs processing to deal with ampersands and quotes
|
// Path line (e.g. 'data=...'), so needs processing to deal with ampersands and quotes
|
||||||
// The following is based on boost::io::detail::quoted_manip.hpp, but calling those functions did not
|
// The following is based on boost::io::detail::quoted_manip.hpp, but we don't actually use
|
||||||
// work as there are too may QStrings involved
|
// boost::filesystem::path anymore, and use a custom class MaybeQuotedPath which uses Boost-like quoting
|
||||||
|
// rules but internally stores as a std::filesystem::path.
|
||||||
|
// Caution: This is intentional behaviour to duplicate how Boost and what we replaced it with worked,
|
||||||
|
// and we rely on that.
|
||||||
QChar delim = '\"';
|
QChar delim = '\"';
|
||||||
QChar escape = '&';
|
QChar escape = '&';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue