forked from qt-creator/qt-creator
McuSupport: Fix name of McuSupportRunConfigurationFactory
Was a remainder of initial clone&rename action. Change-Id: Ifd06626cf2c895a1e20289ebd7ce711432f0a23a Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -45,8 +45,8 @@ class McuSupportPluginPrivate
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
McuSupportDeviceFactory deviceFactory;
|
McuSupportDeviceFactory deviceFactory;
|
||||||
EmrunRunConfigurationFactory emrunRunConfigurationFactory;
|
McuSupportRunConfigurationFactory runConfigurationFactory;
|
||||||
RunWorkerFactory emrunRunWorkerFactory{
|
RunWorkerFactory runWorkerFactory{
|
||||||
makeFlashAndRunWorker(),
|
makeFlashAndRunWorker(),
|
||||||
{ProjectExplorer::Constants::NORMAL_RUN_MODE},
|
{ProjectExplorer::Constants::NORMAL_RUN_MODE},
|
||||||
{Constants::RUNCONFIGURATION}
|
{Constants::RUNCONFIGURATION}
|
||||||
|
@@ -107,7 +107,7 @@ RunWorkerFactory::WorkerCreator makeFlashAndRunWorker()
|
|||||||
return RunWorkerFactory::make<FlashAndRunWorker>();
|
return RunWorkerFactory::make<FlashAndRunWorker>();
|
||||||
}
|
}
|
||||||
|
|
||||||
EmrunRunConfigurationFactory::EmrunRunConfigurationFactory()
|
McuSupportRunConfigurationFactory::McuSupportRunConfigurationFactory()
|
||||||
: FixedRunConfigurationFactory(FlashAndRunConfiguration::tr("Flash and run"))
|
: FixedRunConfigurationFactory(FlashAndRunConfiguration::tr("Flash and run"))
|
||||||
{
|
{
|
||||||
registerRunConfiguration<FlashAndRunConfiguration>(Constants::RUNCONFIGURATION);
|
registerRunConfiguration<FlashAndRunConfiguration>(Constants::RUNCONFIGURATION);
|
||||||
|
@@ -31,10 +31,10 @@
|
|||||||
namespace McuSupport {
|
namespace McuSupport {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
class EmrunRunConfigurationFactory : public ProjectExplorer::FixedRunConfigurationFactory
|
class McuSupportRunConfigurationFactory : public ProjectExplorer::FixedRunConfigurationFactory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
EmrunRunConfigurationFactory();
|
McuSupportRunConfigurationFactory();
|
||||||
};
|
};
|
||||||
|
|
||||||
class FlashAndRunConfiguration : public ProjectExplorer::RunConfiguration
|
class FlashAndRunConfiguration : public ProjectExplorer::RunConfiguration
|
||||||
|
Reference in New Issue
Block a user