summaryrefslogtreecommitdiffstats
path: root/smglobals.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2013-08-21 18:52:02 +0200
committerArno <am@disconnect.de>2013-08-21 18:52:02 +0200
commitcd2d39368e2319eb7c949439e9688bf8319ec0a3 (patch)
tree2a0c91966e9a37b172b8e4d2c76eb55c1451aad9 /smglobals.cpp
parentd9ed1e53b7ea0c994972f4628a4dbb431fdf9fde (diff)
downloadSheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.tar.gz
SheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.tar.bz2
SheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.zip
Usability fix
* repair shortcuts for adding files to NewPicsDialog and showing it from PictureViewer2 * Replace files in NewPicsDialog instead of adding them * add missing header to MappingTreeModel
Diffstat (limited to 'smglobals.cpp')
-rw-r--r--smglobals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/smglobals.cpp b/smglobals.cpp
index 949b5ae..2e3a13e 100644
--- a/smglobals.cpp
+++ b/smglobals.cpp
@@ -83,7 +83,7 @@ QAbstractItemModel *SmGlobals::model(const QString &which){
}
}else if(which == "MappingTree"){
if(!mModels.contains("MappingTree")){
- QStringList headers = QStringList() << tr("Name") << tr("Id") << tr("Date") << tr("Parent");
+ QStringList headers = QStringList() << tr("Name") << tr("Id") << tr("Date") << tr("Parent") << tr("PPID");
MappingTreeModel *model = new MappingTreeModel(headers);
mModels.insert(which, model);
}