diff options
Diffstat (limited to 'smglobals.cpp')
-rw-r--r-- | smglobals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smglobals.cpp b/smglobals.cpp index b73c89b..93ec72e 100644 --- a/smglobals.cpp +++ b/smglobals.cpp @@ -94,7 +94,7 @@ QAbstractItemModel *SmGlobals::model(const QString &which){ } }else if(which == "MappingTree"){ if(!mModels.contains("MappingTree")){ - QStringList headers = QStringList() << tr("Name") << tr("Id") << tr("Date"); + QStringList headers = QStringList() << tr("Name") << tr("Id") << tr("Date") << tr("Parent"); MappingTreeModel *model = new MappingTreeModel(headers); mModels.insert(which, model); } |