Common/FileSystem: Fix misspelling of 'separator'

This commit is contained in:
Michael Forney
2020-12-25 01:36:48 -08:00
committed by Connor McLaughlin
parent d0398c8a83
commit 7a40a843d4
5 changed files with 16 additions and 16 deletions

View File

@ -767,7 +767,7 @@ void QtHostInterface::saveInputProfile(const QString& profile_name)
QString QtHostInterface::getUserDirectoryRelativePath(const QString& arg) const
{
QString result = QString::fromStdString(m_user_directory);
result += FS_OSPATH_SEPERATOR_CHARACTER;
result += FS_OSPATH_SEPARATOR_CHARACTER;
result += arg;
return result;
}
@ -775,7 +775,7 @@ QString QtHostInterface::getUserDirectoryRelativePath(const QString& arg) const
QString QtHostInterface::getProgramDirectoryRelativePath(const QString& arg) const
{
QString result = QString::fromStdString(m_program_directory);
result += FS_OSPATH_SEPERATOR_CHARACTER;
result += FS_OSPATH_SEPARATOR_CHARACTER;
result += arg;
return result;
}