mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-22 03:26:35 +00:00
Operators supporting this conversion can be disabled via QT_NO_CAST_FROM_BYTEARRAY breaking the build. For example: https://koschei.fedoraproject.org//package/openmw https://kojipkgs.fedoraproject.org/work/tasks/5096/137735096/build.log
27 lines
764 B
C++
27 lines
764 B
C++
#include "qtconversion.hpp"
|
|
|
|
#include <components/misc/strings/conversion.hpp>
|
|
|
|
#include <string_view>
|
|
|
|
QString VFS::Path::normalizedToQString(NormalizedView path)
|
|
{
|
|
return QString::fromUtf8(path.value().data(), path.value().size());
|
|
}
|
|
|
|
QString VFS::Path::normalizedToQString(Normalized&& path)
|
|
{
|
|
return QString::fromUtf8(path.value().data(), path.value().size());
|
|
}
|
|
|
|
VFS::Path::Normalized VFS::Path::normalizedFromQString(QStringView path)
|
|
{
|
|
const QByteArray tmp = path.toUtf8();
|
|
return Normalized(std::string_view(tmp.constData(), tmp.size()));
|
|
}
|
|
|
|
VFS::Path::Normalized VFS::Path::normalizedFromQString(QString&& path)
|
|
{
|
|
const QByteArray tmp = std::move(path).toUtf8();
|
|
return Normalized(std::string_view(tmp.constData(), tmp.size()));
|
|
}
|