summaryrefslogtreecommitdiff
path: root/plugins/autotest/autotestplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/autotest/autotestplugin.h')
-rw-r--r--plugins/autotest/autotestplugin.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/autotest/autotestplugin.h b/plugins/autotest/autotestplugin.h
index b7a02d89e7..ad6a2b9a2a 100644
--- a/plugins/autotest/autotestplugin.h
+++ b/plugins/autotest/autotestplugin.h
@@ -28,6 +28,7 @@ namespace Autotest {
namespace Internal {
struct TestSettings;
+struct SquishSettings;
class AutotestPlugin : public ExtensionSystem::IPlugin
{
@@ -40,7 +41,8 @@ public:
static AutotestPlugin *instance();
- QSharedPointer<TestSettings> settings() const;
+ QSharedPointer<TestSettings> qtestSettings() const;
+ QSharedPointer<SquishSettings> squishSettings() const;
bool initialize(const QStringList &arguments, QString *errorString);
void extensionsInitialized();
@@ -53,7 +55,8 @@ private:
void onRunSelectedTriggered();
void updateMenuItemsEnabledState();
QList<QObject *> createTestObjects() const;
- const QSharedPointer<TestSettings> m_settings;
+ const QSharedPointer<TestSettings> m_qtestSettings;
+ const QSharedPointer<SquishSettings> m_squishSettings;
};
} // namespace Internal