From 644b51a699c98fbcd47d89c59404e3b4f12d8a92 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 17 Jun 2022 14:29:11 +0200 Subject: [PATCH] Utils: Add more correct comment to QtcProcess::cleanedStd{Out,Err} Change-Id: I50202db7d8455372c3697087d9571db6706b45a1 Reviewed-by: David Schulz Reviewed-by: Jarek Kobus --- src/libs/utils/qtcprocess.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/utils/qtcprocess.h b/src/libs/utils/qtcprocess.h index 42c981a3431..8763bc14e26 100644 --- a/src/libs/utils/qtcprocess.h +++ b/src/libs/utils/qtcprocess.h @@ -189,8 +189,8 @@ public: QString stdOut() const; // possibly with CR QString stdErr() const; // possibly with CR - QString cleanedStdOut() const; // with CR removed - QString cleanedStdErr() const; // with CR removed + QString cleanedStdOut() const; // with sequences of CR squashed and CR LF replaced by LF + QString cleanedStdErr() const; // with sequences of CR squashed and CR LF replaced by LF const QStringList stdOutLines() const; // split, CR removed const QStringList stdErrLines() const; // split, CR removed