diff options
author | Arno <am@disconnect.de> | 2013-08-21 18:52:02 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-08-21 18:52:02 +0200 |
commit | cd2d39368e2319eb7c949439e9688bf8319ec0a3 (patch) | |
tree | 2a0c91966e9a37b172b8e4d2c76eb55c1451aad9 /smglobals.cpp | |
parent | d9ed1e53b7ea0c994972f4628a4dbb431fdf9fde (diff) | |
download | SheMov-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.cpp | 2 |
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); } |