[win-linux] CLogger: small refactoring

This commit is contained in:
SimplestStudio
2025-08-22 12:16:17 +03:00
parent a4bbec89e6
commit d70f1e1b3f

View File

@ -31,7 +31,7 @@ void CLogger::write(const QString &value)
out.setCodec("UTF-8");
#endif
if ( m_file ) {
#ifdef QT_VERSION_6
#if QT_VERSION >= QT_VERSION_CHECK(5,14,0)
out << text << Qt::endl;
#else
out << text << endl;