summaryrefslogtreecommitdiffstats
path: root/smglobals.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2013-08-22 07:43:20 +0200
committerArno <am@disconnect.de>2013-08-22 07:43:20 +0200
commit369c14264c664b38049ac081cf60b8485a4042cb (patch)
tree5e77075e82d5d0caf7f0a7743a9a69f42ac9df9e /smglobals.cpp
parentcd2d39368e2319eb7c949439e9688bf8319ec0a3 (diff)
downloadSheMov-369c14264c664b38049ac081cf60b8485a4042cb.tar.gz
SheMov-369c14264c664b38049ac081cf60b8485a4042cb.tar.bz2
SheMov-369c14264c664b38049ac081cf60b8485a4042cb.zip
Give Pictures some love!
* Show and archive size of pictures * Fix SqlQueries in PicFilesModel: removeFiles and changeMappings * use delegate in PictureView
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 2e3a13e..7388968 100644
--- a/smglobals.cpp
+++ b/smglobals.cpp
@@ -89,7 +89,7 @@ QAbstractItemModel *SmGlobals::model(const QString &which){
}
}else if(which == "PicFiles"){
if(!mModels.contains("PicFiles")){
- QStringList headers = QStringList() << tr("Filename") << tr("SizeNum") << tr("Format") << tr("Full Path") << tr("Id") << tr("Added") << tr("Md5Sum") << tr("Size");
+ QStringList headers = QStringList() << tr("Filename") << tr("Size") << tr("Format") << tr("Full Path") << tr("Id") << tr("Added") << tr("Md5Sum") << tr("Pic. Size");
PicFilesModel *model = new PicFilesModel(headers);
mModels.insert(which, model);
}