diff options
author | Christian Stenger <[email protected]> | 2020-10-13 11:37:37 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2020-11-16 08:10:04 +0000 |
commit | 239a59c596119bb6b7855d66467f6c1b635b7c50 (patch) | |
tree | 09f9cbad7c5a77164c671df1cefc3245a8d98561 /src/plugins/autotest/testresult.h | |
parent | 55298cc2116a3f5f64a33c57e826caad6604a5f8 (diff) |
AutoTest: Introduce ITestConfiguration
Preparation for an additional simpler test configuration
which needs to have the same common base.
Change-Id: I1800ed5d7301f1aea99eba6ef588a204697bd569
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testresult.h')
-rw-r--r-- | src/plugins/autotest/testresult.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotest/testresult.h b/src/plugins/autotest/testresult.h index 6bdcaa57483..af8ba7e450b 100644 --- a/src/plugins/autotest/testresult.h +++ b/src/plugins/autotest/testresult.h @@ -34,7 +34,7 @@ namespace Autotest { -class TestTreeItem; +class ITestTreeItem; enum class ResultType { // result types (have icon, color, short text) @@ -86,7 +86,7 @@ public: virtual ~TestResult() {} virtual const QString outputString(bool selected) const; - virtual const TestTreeItem *findTestTreeItem() const; + virtual const ITestTreeItem *findTestTreeItem() const; QString id() const { return m_id; } QString name() const { return m_name; } |