made file function inline static

This commit is contained in:
itsmattkc
2021-04-01 16:40:28 +11:00
parent 2d20673fe8
commit f3efab1da1
2 changed files with 8 additions and 10 deletions
-9
View File
@@ -240,13 +240,4 @@ bool FileFunctions::RenameFileAllowOverwrite(const QString &from, const QString
return true;
}
QString FileFunctions::GetFormattedExecutableForPlatform(QString unformatted)
{
#ifdef Q_OS_WINDOWS
unformatted.append(QStringLiteral(".exe"));
#endif
return unformatted;
}
}