Move SSH functionality out of the Qt4ProjectManager.

It does not conceptually belong there, and several people have
asked for an interface to use the functionality in their own
plugins.

Task-number: QTCREATORBUG-1204
Reviewed-by: kh1
This commit is contained in:
ck
2010-04-26 11:43:25 +02:00
parent 71b9057b0b
commit 9ece8a4110
28 changed files with 960 additions and 620 deletions

View File

@@ -36,7 +36,6 @@
#include "maemosettingspage.h"
#include "maemotoolchain.h"
#include "maemorunconfiguration.h"
#include "ne7sshobject.h"
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/coreconstants.h>
@@ -83,8 +82,6 @@ MaemoManager::MaemoManager()
pluginManager->addObject(m_runConfigurationFactory);
pluginManager->addObject(m_packageCreationFactory);
pluginManager->addObject(m_settingsPage);
Ne7SshObject::instance();
}
MaemoManager::~MaemoManager()
@@ -96,7 +93,6 @@ MaemoManager::~MaemoManager()
pluginManager->removeObject(m_packageCreationFactory);
pluginManager->removeObject(m_settingsPage);
Ne7SshObject::removeInstance();
m_instance = 0;
}