Fix build on Windows.

develop
Roman Telezhynskyi 2024-03-21 18:04:37 +02:00
parent 08a0f54249
commit 73dae25d8a
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public:
#if defined(Q_OS_UNIX)
static auto GetPlatformString(const QString &string) -> std::string;
#elif defined(Q_OS_WINDOWS)
static auto GetPlatformString(QString string) -> std::wstring;
static auto GetPlatformString(const QString &string) -> std::wstring;
#else
#error GetPlatformString not implemented on this platform
#endif