aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/kitmodel.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-08-25 15:17:35 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-09-04 13:36:56 +0200
commitc2ed44085bc69bd160d27cf214e4789e1c3a15ac (patch)
treeed8997682278492157c2bc7aeaaf2bec8d56e262 /src/plugins/projectexplorer/kitmodel.h
parentd56f217f83ff6d808a865a9b524cdfca0f7cc78b (diff)
Kit: Change displayName generation
Do not care whether the unexpandedDisplay name is unique or not, nor whether the display name is unique or not. Warn if it is not in the Kits Options Page, but that is all. Change-Id: I1cbeb5beb477d533092ade6ef67a97044e53477c Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/kitmodel.h')
-rw-r--r--src/plugins/projectexplorer/kitmodel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/kitmodel.h b/src/plugins/projectexplorer/kitmodel.h
index ce3f3afc24..5b9ddc9eea 100644
--- a/src/plugins/projectexplorer/kitmodel.h
+++ b/src/plugins/projectexplorer/kitmodel.h
@@ -86,17 +86,16 @@ public:
void markForRemoval(Kit *k);
Kit *markForAddition(Kit *baseKit);
- QString findNameFor(Kit *k);
-
signals:
void kitStateChanged();
private slots:
void addKit(ProjectExplorer::Kit *k);
+ void updateKit(ProjectExplorer::Kit *k);
void removeKit(ProjectExplorer::Kit *k);
- void updateKit(ProjectExplorer::Kit*);
void changeDefaultKit();
void setDirty();
+ void validateKitNames();
private:
QModelIndex index(KitNode *, int column = 0) const;