diff options
author | dt <qtc-committer@nokia.com> | 2010-12-10 19:02:19 +0100 |
---|---|---|
committer | dt <qtc-committer@nokia.com> | 2011-01-17 14:13:40 +0100 |
commit | 67cfb7e078d6c37487992f8ac09e1147e0774fbe (patch) | |
tree | cf4c309b90ed86a4a4cdf5665453c51575062923 /src/plugins/cmakeprojectmanager/cmaketarget.cpp | |
parent | 77bf0c17c59bf9324f07ae97dee0b77789c549fd (diff) | |
download | qt-creator-67cfb7e078d6c37487992f8ac09e1147e0774fbe.tar.gz |
Qt4projectManager: Refactor Qt4Target, split up in per target classes
Almost(*) all of the symbian and maemo specific code is now theoretically
moveable to a separate plugin. Thus making it possible to implement
new targets in a plugin.
(*) Noteable missing is the qtversion, which needs to be split up
per target too.
Also fixes
Task-Nr: QTCREATORBUG-2440
Reviewed-By: hunger
Reviewed-By: ck
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmaketarget.cpp')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmaketarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmaketarget.cpp b/src/plugins/cmakeprojectmanager/cmaketarget.cpp index 55f9f85024..655173f4c3 100644 --- a/src/plugins/cmakeprojectmanager/cmaketarget.cpp +++ b/src/plugins/cmakeprojectmanager/cmaketarget.cpp @@ -186,7 +186,7 @@ CMakeTargetFactory::~CMakeTargetFactory() { } -QStringList CMakeTargetFactory::availableCreationIds(ProjectExplorer::Project *parent) const +QStringList CMakeTargetFactory::supportedTargetIds(ProjectExplorer::Project *parent) const { if (!qobject_cast<CMakeProject *>(parent)) return QStringList(); |