forked from qt-creator/qt-creator
Rename namespace Qt4ProjectManager to QmakeProjectManager
First step towards plugin renaming. Change-Id: I8ac017660a7aa2bda0d7bb7d72ab0cfceaf6cfd2 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
|
||||
using namespace Core;
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
|
||||
@@ -319,7 +319,7 @@ void IosConfigurations::updateAutomaticKitList()
|
||||
Debugger::DebuggerKitInformation::setDebugger(newKit, debugger);
|
||||
|
||||
SysRootKitInformation::setSysRoot(newKit, p.sdkPath);
|
||||
//Qt4ProjectManager::QmakeKitInformation::setMkspec(newKit,
|
||||
// QmakeProjectManager::QmakeKitInformation::setMkspec(newKit,
|
||||
// Utils::FileName::fromString(QLatin1String("macx-ios-clang")));
|
||||
KitManager::registerKit(newKit);
|
||||
existingKits << newKit;
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
|
||||
using namespace Debugger;
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
|
||||
@@ -112,7 +112,7 @@ DeployConfiguration *IosDeployConfigurationFactory::clone(Target *parent, Deploy
|
||||
QList<Core::Id> IosDeployConfigurationFactory::availableCreationIds(Target *parent) const
|
||||
{
|
||||
QList<Core::Id> ids;
|
||||
if (!qobject_cast<Qt4ProjectManager::Qt4Project *>(parent->project()))
|
||||
if (!qobject_cast<QmakeProjectManager::Qt4Project *>(parent->project()))
|
||||
return ids;
|
||||
if (!parent->project()->supportsKit(parent->kit()))
|
||||
return ids;
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
#define ASSERT_STATE(state) ASSERT_STATE_GENERIC(State, state, m_state)
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
@@ -239,4 +239,4 @@ IosSimulator::ConstPtr IosDeployStep::iossimulator() const
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
@@ -67,4 +67,4 @@ QString IosDeployStepWidget::summaryText() const
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
#include <QApplication>
|
||||
#include <QDomDocument>
|
||||
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
using namespace ProjectExplorer;
|
||||
|
||||
namespace Ios {
|
||||
@@ -58,7 +58,7 @@ namespace Internal {
|
||||
|
||||
bool IosManager::supportsIos(ProjectExplorer::Target *target)
|
||||
{
|
||||
if (!qobject_cast<Qt4ProjectManager::Qt4Project *>(target->project()))
|
||||
if (!qobject_cast<QmakeProjectManager::Qt4Project *>(target->project()))
|
||||
return false;
|
||||
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target->kit());
|
||||
return version && version->type() == QLatin1String(Ios::Constants::IOSQT);
|
||||
@@ -72,4 +72,4 @@ QString IosManager::resDirForTarget(Target *target)
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
|
||||
using namespace Ios::Internal;
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
IosQtVersion::IosQtVersion()
|
||||
: QtSupport::BaseQtVersion()
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
#include <utils/qtcassert.h>
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
|
||||
@@ -109,4 +109,4 @@ QIcon IosRunControl::icon() const
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
using namespace QmakeProjectManager;
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
@@ -173,4 +173,4 @@ RunControl *IosRunControlFactory::create(RunConfiguration *runConfig,
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
@@ -43,7 +43,7 @@ class Node;
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
|
||||
class IosRunConfigurationFactory : public Qt4ProjectManager::QmakeRunConfigurationFactory
|
||||
class IosRunConfigurationFactory : public QmakeProjectManager::QmakeRunConfigurationFactory
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
@@ -209,4 +209,4 @@ QString IosRunner::displayName() const
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
} // namespace Ios
|
||||
|
||||
Reference in New Issue
Block a user