diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2012-03-06 12:31:42 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2012-03-08 14:07:19 +0100 |
commit | 9a34b156c155fb5c6605dccb4c7b2d7e66f633fb (patch) | |
tree | f1ff8d4d98f2920d7026c36d9ad7b98427876f81 /src/plugins/remotelinux/remotelinuxplugin.cpp | |
parent | 933592e6a795968d1b8f82fdce67d54a89beda8b (diff) | |
download | qt-creator-9a34b156c155fb5c6605dccb4c7b2d7e66f633fb.tar.gz |
Introduce the concept of an abstract device.
The idea is that all kinds of devices inherit from one abstract
base class and that they are all managed by one device manager,
who does not know about their specifics.
For now, the only concrete subclass is the LinuxDeviceConguration.
Change-Id: I31ff5586a0fdd6bcf8dcc0554bb2b91fe65b2f3f
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxplugin.cpp')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxplugin.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/remotelinux/remotelinuxplugin.cpp b/src/plugins/remotelinux/remotelinuxplugin.cpp index 8305e306f0..6a21e597b3 100644 --- a/src/plugins/remotelinux/remotelinuxplugin.cpp +++ b/src/plugins/remotelinux/remotelinuxplugin.cpp @@ -37,12 +37,10 @@ #include "deployablefile.h" #include "genericlinuxdeviceconfigurationfactory.h" #include "genericremotelinuxdeploystepfactory.h" -#include "linuxdeviceconfigurations.h" #include "qt4projectmanager/qt4projectmanagerconstants.h" #include "remotelinuxdeployconfigurationfactory.h" #include "remotelinuxrunconfigurationfactory.h" #include "remotelinuxruncontrolfactory.h" -#include "remotelinuxsettingspages.h" #include "startgdbserverdialog.h" #include <coreplugin/icore.h> @@ -71,10 +69,7 @@ bool RemoteLinuxPlugin::initialize(const QStringList &arguments, Q_UNUSED(arguments) Q_UNUSED(errorMessage) - LinuxDeviceConfigurations::instance(this); - addObject(this); - addAutoReleasedObject(new LinuxDeviceConfigurationsSettingsPage); addAutoReleasedObject(new GenericLinuxDeviceConfigurationFactory); addAutoReleasedObject(new RemoteLinuxRunConfigurationFactory); addAutoReleasedObject(new RemoteLinuxRunControlFactory); |