forked from qt-creator/qt-creator
move settings getter to cpp
Change-Id: Iec90cfcd74192f13d270180db91db95d41253bc5 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
committed by
Christian Stenger
parent
1cc239ef41
commit
b655f70aba
@@ -70,6 +70,11 @@ AutotestPlugin *AutotestPlugin::instance()
|
|||||||
return m_instance;
|
return m_instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QSharedPointer<TestSettings> AutotestPlugin::settings() const
|
||||||
|
{
|
||||||
|
return m_settings;
|
||||||
|
}
|
||||||
|
|
||||||
bool AutotestPlugin::checkLicense()
|
bool AutotestPlugin::checkLicense()
|
||||||
{
|
{
|
||||||
LicenseChecker::LicenseCheckerPlugin *licenseChecker
|
LicenseChecker::LicenseCheckerPlugin *licenseChecker
|
||||||
|
|||||||
@@ -39,11 +39,12 @@ public:
|
|||||||
|
|
||||||
static AutotestPlugin *instance();
|
static AutotestPlugin *instance();
|
||||||
|
|
||||||
|
QSharedPointer<TestSettings> settings() const;
|
||||||
|
|
||||||
bool initialize(const QStringList &arguments, QString *errorString);
|
bool initialize(const QStringList &arguments, QString *errorString);
|
||||||
void extensionsInitialized();
|
void extensionsInitialized();
|
||||||
ShutdownFlag aboutToShutdown();
|
ShutdownFlag aboutToShutdown();
|
||||||
|
|
||||||
QSharedPointer<TestSettings> settings() const { return m_settings; }
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void triggerAction();
|
void triggerAction();
|
||||||
|
|||||||
Reference in New Issue
Block a user