mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 08:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			638 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			638 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#include "qtconversion.hpp"
 | 
						|
 | 
						|
#include <components/misc/strings/conversion.hpp>
 | 
						|
 | 
						|
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 auto tmp = path.toUtf8();
 | 
						|
    return Normalized{ tmp };
 | 
						|
}
 | 
						|
 | 
						|
VFS::Path::Normalized VFS::Path::normalizedFromQString(QString&& path)
 | 
						|
{
 | 
						|
    const auto tmp = path.toUtf8();
 | 
						|
    return Normalized{ tmp };
 | 
						|
}
 |