From 9348ac5fece45460f960281bd003a39d2026b28a Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 17 Mar 2020 15:18:06 +0100 Subject: Utils: Remove the *SameLine OutputFormat enums Presumably, they were intended for output that shouldn't get an automatic newline, but if there ever was such a thing as automatic newlines, it must have evaporated over time. All users of OutputFormatter provide a newline if they want one. Change-Id: Ibd219b7305fd503ce075d6f77930d2b538d5e2e8 Reviewed-by: hjk --- src/plugins/android/androidrunner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/android/androidrunner.cpp') diff --git a/src/plugins/android/androidrunner.cpp b/src/plugins/android/androidrunner.cpp index 06871b93ae..16098ae179 100644 --- a/src/plugins/android/androidrunner.cpp +++ b/src/plugins/android/androidrunner.cpp @@ -215,14 +215,14 @@ void AndroidRunner::qmlServerPortReady(Port port) void AndroidRunner::remoteOutput(const QString &output) { Core::MessageManager::write("LOGCAT: " + output, Core::MessageManager::Silent); - appendMessage(output, Utils::StdOutFormatSameLine); + appendMessage(output, Utils::StdOutFormat); m_outputParser.processOutput(output); } void AndroidRunner::remoteErrorOutput(const QString &output) { Core::MessageManager::write("LOGCAT: " + output, Core::MessageManager::Silent); - appendMessage(output, Utils::StdErrFormatSameLine); + appendMessage(output, Utils::StdErrFormat); m_outputParser.processOutput(output); } -- cgit v1.2.1