aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-10-24 09:00:20 +0200
committerChristian Stenger <christian.stenger@qt.io>2016-10-26 09:59:57 +0000
commit99a82f7035f7bb9230d30f151f56c61085df4c13 (patch)
tree7c2d4eac5fa0e28725d700a83cf9eb9e72e4f9f2 /src/plugins/autotest/itestframework.h
parentab03ddae252a36e6c168c85974ae2b80b59e1894 (diff)
AutoTest: Simplify settingspage creation for frameworks
Change-Id: Icb262e48a7980748cb0f03e578a49ca26d0c6b29 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index d752da0250..ae6e0ec437 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -28,12 +28,11 @@
#include "testtreeitem.h"
#include "itestparser.h"
-namespace Core { class IOptionsPage; }
-
namespace Autotest {
namespace Internal {
class IFrameworkSettings;
+class ITestSettingsPage;
class ITestFramework
{
@@ -49,7 +48,7 @@ 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
+ virtual ITestSettingsPage *createSettingsPage(QSharedPointer<IFrameworkSettings> settings) const
{
Q_UNUSED(settings);
return 0;