forked from qt-creator/qt-creator
Rename IRunConfigurationRunner -> IRunControlFactory...
and ApplicationRunConfiguration to LocalApplicationRunConfiguration, preparing remote debugging. Change the interface canRun() to be const, run() to create() (since it does not run anything), use references to the QSharedPointer<Foo>. Introduce d-Pointer and remove unneeded headers from ProjectExplorerPlugin and add missing includes everywhere.
This commit is contained in:
@@ -57,9 +57,9 @@ S60Manager::S60Manager(QObject *parent)
|
||||
m_devices(new S60Devices(this)),
|
||||
m_devicesPreferencePane(new S60DevicesPreferencePane(m_devices, this)),
|
||||
m_s60EmulatorRunConfigurationFactory(new S60EmulatorRunConfigurationFactory(this)),
|
||||
m_s60EmulatorRunConfigurationRunner(new S60EmulatorRunConfigurationRunner(this)),
|
||||
m_s60EmulatorRunConfigurationRunner(new S60EmulatorRunControlFactory(this)),
|
||||
m_s60DeviceRunConfigurationFactory(new S60DeviceRunConfigurationFactory(this)),
|
||||
m_s60DeviceRunConfigurationRunner(new S60DeviceRunConfigurationRunner(this)),
|
||||
m_s60DeviceRunConfigurationRunner(new S60DeviceRunControlFactory(this)),
|
||||
m_serialDeviceLister(new SerialDeviceLister(this))
|
||||
{
|
||||
m_instance = this;
|
||||
|
||||
Reference in New Issue
Block a user