Fix build on Windows.

This commit is contained in:
Roman Telezhynskyi 2024-03-21 18:04:37 +02:00
parent 08a0f54249
commit 73dae25d8a

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