diff options
author | Christian Stenger <[email protected]> | 2019-11-11 08:03:16 +0100 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2019-11-13 13:07:25 +0000 |
commit | 2c7e769e312d2e6bf7efe68be2c4f0b6ccb8cf85 (patch) | |
tree | 5a7d8aa99d7acfd54b15a172d568d0ff451e3f46 /src/plugins/autotest/testresultspane.h | |
parent | 53906070193711e261ae4449333111c6a5493900 (diff) |
AutoTest: Clear up and generalize
Instead of transforming forth and back the output
try to handle the output once correctly and pass it
line-wise around.
This also ensures that we always get a single line
when appending the output which will be necessary
later on.
Change-Id: I3e9c6db5f81172997dfe566eee9a86bfe2f17a1f
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testresultspane.h')
-rw-r--r-- | src/plugins/autotest/testresultspane.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/autotest/testresultspane.h b/src/plugins/autotest/testresultspane.h index 2b24ee38017..cccaddec2ea 100644 --- a/src/plugins/autotest/testresultspane.h +++ b/src/plugins/autotest/testresultspane.h @@ -94,7 +94,7 @@ public: void goToPrev() override; void addTestResult(const TestResultPtr &result); - void addOutput(const QByteArray &outputWithNewLine); + void addOutputLine(const QByteArray &outputLine); void showTestResult(const QModelIndex &index); private: |