summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2016-03-05 08:55:25 +0100
committerArno <arno@disconnect.de>2016-03-05 08:55:25 +0100
commit97ded60e4bd6aea2aecd871d30c21d24caa49bee (patch)
tree2893ff2941492d243c6baa75b4ad11160fc13763
parentd95afcc68fcabb37001b3f7bab6540c35ebf7df5 (diff)
downloadSheMov-97ded60e4bd6aea2aecd871d30c21d24caa49bee.tar.gz
SheMov-97ded60e4bd6aea2aecd871d30c21d24caa49bee.tar.bz2
SheMov-97ded60e4bd6aea2aecd871d30c21d24caa49bee.zip
Add missing columns to ArchiveView
-rw-r--r--archiveview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/archiveview.cpp b/archiveview.cpp
index 0b830bc..3090c26 100644
--- a/archiveview.cpp
+++ b/archiveview.cpp
@@ -110,7 +110,7 @@ ArchiveView::ArchiveView(QWidget *parent) : QWidget(parent) {
mFiles->setItemDelegateForColumn(ArchiveFilesModel::FileNumber, new EmptyDelegate(this));
mFiles->setSelectionMode(QAbstractItemView::ExtendedSelection);
mFiles->setSelectionBehavior(QAbstractItemView::SelectRows);
- mFilesModel = new ArchiveFilesModel(QStringList() << QChar(0x26A7) << tr("Seriespartid") << tr("Filename") << tr("Md5Sum") << tr("Size") << tr("Dvd") << tr("Type") << tr("No") << tr("Q") << tr("Fileid") << tr("S/Dur") << tr("Full Path"), this);
+ mFilesModel = new ArchiveFilesModel(QStringList() << QChar(0x26A7) << tr("Seriespartid") << tr("Filename") << tr("Md5Sum") << tr("Size") << tr("Dvd") << tr("Type") << tr("No") << tr("Q") << tr("Fileid") << tr("S/Dur") << tr("Full Path") << tr("Series Name") << tr("Series Part") << tr("Subtitle "), this);
mFilesProxy = new ArchiveFilesProxy;
mFilesProxy->setSourceModel(mFilesModel);
mFiles->setModel(mFilesProxy);