aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-10-05 13:34:57 +0200
committerChristian Stenger <christian.stenger@qt.io>2016-10-10 06:34:55 +0000
commit4048403ae7f8f04e16f4cc8c5374891f20a6a250 (patch)
treec744e1624f176abaa223681dc95665ae5c268d32 /src/plugins/autotest/itestframework.h
parent18dc7a5de96d8376ebb6ec2d619205f8413bb67c (diff)
AutoTest: Separate settings pages
Change-Id: Ib7fedbd5c3bfdc793e1ef203a3ad808c55ac1a70 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index 35e0df68cd..d752da0250 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -28,6 +28,8 @@
#include "testtreeitem.h"
#include "itestparser.h"
+namespace Core { class IOptionsPage; }
+
namespace Autotest {
namespace Internal {
@@ -47,6 +49,11 @@ public:
virtual unsigned priority() const = 0; // should this be modifyable?
virtual bool hasFrameworkSettings() const { return false; }
virtual IFrameworkSettings *createFrameworkSettings() const { return 0; }
+ virtual Core::IOptionsPage *createSettingsPage(QSharedPointer<IFrameworkSettings> settings) const
+ {
+ Q_UNUSED(settings);
+ return 0;
+ }
TestTreeItem *rootNode()
{ if (!m_rootNode)