Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Weilbach <felix.weilbach@nextcloud.com>2021-08-21 13:11:33 +0300
committerFelix Weilbach (Rebase PR Action) <felix.weilbach@t-online.de>2021-09-08 11:54:00 +0300
commit2fe3a7947ef39ed4cdbdf61a6bc66aa8e4a254a7 (patch)
treece512b793114c4d949cc8fc2f8f526d2a35c876e /src
parentc7c05173b5a2af98778baf59fed8e81b53562be8 (diff)
endl has been deprecated
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/common/utility_unix.cpp22
-rw-r--r--src/libsync/logger.cpp2
-rw-r--r--src/libsync/theme.cpp12
3 files changed, 18 insertions, 18 deletions
diff --git a/src/common/utility_unix.cpp b/src/common/utility_unix.cpp
index 010408395..087254e60 100644
--- a/src/common/utility_unix.cpp
+++ b/src/common/utility_unix.cpp
@@ -80,17 +80,17 @@ void setLaunchOnStartup_private(const QString &appName, const QString &guiName,
QTextStream ts(&iniFile);
ts.setCodec("UTF-8");
- ts << QLatin1String("[Desktop Entry]") << endl
- << QLatin1String("Name=") << guiName << endl
- << QLatin1String("GenericName=") << QLatin1String("File Synchronizer") << endl
- << QLatin1String("Exec=\"") << executablePath << "\" --background" << endl
- << QLatin1String("Terminal=") << "false" << endl
- << QLatin1String("Icon=") << APPLICATION_ICON_NAME << endl
- << QLatin1String("Categories=") << QLatin1String("Network") << endl
- << QLatin1String("Type=") << QLatin1String("Application") << endl
- << QLatin1String("StartupNotify=") << "false" << endl
- << QLatin1String("X-GNOME-Autostart-enabled=") << "true" << endl
- << QLatin1String("X-GNOME-Autostart-Delay=10") << endl;
+ ts << QLatin1String("[Desktop Entry]\n")
+ << QLatin1String("Name=") << guiName << QLatin1Char('\n')
+ << QLatin1String("GenericName=") << QLatin1String("File Synchronizer\n")
+ << QLatin1String("Exec=\"") << executablePath << "\" --background\n"
+ << QLatin1String("Terminal=") << "false\n"
+ << QLatin1String("Icon=") << APPLICATION_ICON_NAME << QLatin1Char('\n')
+ << QLatin1String("Categories=") << QLatin1String("Network\n")
+ << QLatin1String("Type=") << QLatin1String("Application\n")
+ << QLatin1String("StartupNotify=") << "false\n"
+ << QLatin1String("X-GNOME-Autostart-enabled=") << "true\n"
+ << QLatin1String("X-GNOME-Autostart-Delay=10") << Qt::endl;
} else {
if (!QFile::remove(desktopFileLocation)) {
qCWarning(lcUtility) << "Could not remove autostart desktop file";
diff --git a/src/libsync/logger.cpp b/src/libsync/logger.cpp
index b43dc28cd..8aa0360c2 100644
--- a/src/libsync/logger.cpp
+++ b/src/libsync/logger.cpp
@@ -92,7 +92,7 @@ void Logger::doLog(QtMsgType type, const QMessageLogContext &ctx, const QString
_crashLogIndex = (_crashLogIndex + 1) % CrashLogSize;
_crashLog[_crashLogIndex] = msg;
if (_logstream) {
- (*_logstream) << msg << endl;
+ (*_logstream) << msg << Qt::endl;
if (_doFileFlush)
_logstream->flush();
}
diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp
index d66fa8d81..c4e6e83b7 100644
--- a/src/libsync/theme.cpp
+++ b/src/libsync/theme.cpp
@@ -705,17 +705,17 @@ QString Theme::versionSwitchOutput() const
QTextStream stream(&helpText);
stream << appName()
<< QLatin1String(" version ")
- << version() << endl;
+ << version() << Qt::endl;
#ifdef GIT_SHA1
- stream << "Git revision " << GIT_SHA1 << endl;
+ stream << "Git revision " << GIT_SHA1 << Qt::endl;
#endif
- stream << "Using Qt " << qVersion() << ", built against Qt " << QT_VERSION_STR << endl;
+ stream << "Using Qt " << qVersion() << ", built against Qt " << QT_VERSION_STR << Qt::endl;
if(!QGuiApplication::platformName().isEmpty())
- stream << "Using Qt platform plugin '" << QGuiApplication::platformName() << "'" << endl;
+ stream << "Using Qt platform plugin '" << QGuiApplication::platformName() << "'" << Qt::endl;
- stream << "Using '" << QSslSocket::sslLibraryVersionString() << "'" << endl;
- stream << "Running on " << Utility::platformName() << ", " << QSysInfo::currentCpuArchitecture() << endl;
+ stream << "Using '" << QSslSocket::sslLibraryVersionString() << "'" << Qt::endl;
+ stream << "Running on " << Utility::platformName() << ", " << QSysInfo::currentCpuArchitecture() << Qt::endl;
return helpText;
}