Some fixes for Qt6 Android

This commit is contained in:
pokamest 2022-08-31 15:18:33 +03:00
parent 33ec69d33a
commit ac74510d47
7 changed files with 59 additions and 28 deletions

View file

@ -123,9 +123,9 @@ void Autostart::setAutostart(bool autostart) {
if (file.open(QIODevice::ReadWrite)) {
QTextStream stream(&file);
stream << "[Desktop Entry]" << endl;
stream << "Exec=" << appPath() << endl;
stream << "Type=Application" << endl;
stream << "[Desktop Entry]" << Qt::endl;
stream << "Exec=" << appPath() << Qt::endl;
stream << "Type=Application" << Qt::endl;
}
}
}