mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 17:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_COMPONENTS_MISC_UTF8QTEXTSTREAM_HPP
 | |
| #define OPENMW_COMPONENTS_MISC_UTF8QTEXTSTREAM_HPP
 | |
| 
 | |
| #include <QtGlobal>
 | |
| 
 | |
| #include <QTextStream>
 | |
| 
 | |
| namespace Misc
 | |
| {
 | |
|     inline void ensureUtf8Encoding(QTextStream& stream)
 | |
|     {
 | |
|         stream.setEncoding(QStringConverter::Utf8);
 | |
|     }
 | |
| }
 | |
| #endif
 |