summaryrefslogtreecommitdiffstats
path: root/smglobals.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2014-12-10 07:26:27 +0100
committerArno <am@disconnect.de>2014-12-10 07:26:27 +0100
commit175d243e0c0021e9f303474aa3088045a516a62c (patch)
tree1f74b9ba413242cc298edd167fd749dcecac07c0 /smglobals.cpp
parent0e27f8f8aaf1a0dbff9aed960e78f109517a387a (diff)
downloadSheMov-175d243e0c0021e9f303474aa3088045a516a62c.tar.gz
SheMov-175d243e0c0021e9f303474aa3088045a516a62c.tar.bz2
SheMov-175d243e0c0021e9f303474aa3088045a516a62c.zip
Weed out SeriesMetadataModel
Delete last remnants of this class (includes and files). It's not needed any more.
Diffstat (limited to 'smglobals.cpp')
-rw-r--r--smglobals.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/smglobals.cpp b/smglobals.cpp
index 624effc..5c56855 100644
--- a/smglobals.cpp
+++ b/smglobals.cpp
@@ -23,7 +23,6 @@
#include "smglobals.h"
#include "archivemodel.h"
#include "mappingtablemodel.h"
-#include "seriesmetadatamodel.h"
#include "mappingtreemodel.h"
#include "pictureviewer2.h"
#include "picfilesmodel.h"
@@ -74,12 +73,6 @@ QAbstractItemModel *SmGlobals::model(const QString &which){
MappingTableModel *model = new MappingTableModel(headers, "genres");
mModels.insert(which, model);
}
- }else if(which == "SeriesMetadata"){
- if(!mModels.contains(which)){
- QStringList headers = QStringList() << tr("SeriesPartId") << tr("Release Year") << tr("Source Medium") << tr("Subject") << tr("Release Group") << tr("Encoder Options") << tr("Comment") << tr("Encoding Passes") << tr("Added");
- SeriesMetadataModel *model = new SeriesMetadataModel(headers);
- mModels.insert(which, model);
- }
}else if(which == "MappingTree"){
if(!mModels.contains("MappingTree")){
QStringList headers = QStringList() << tr("Name") << tr("Id") << tr("Date") << tr("Parent") << tr("PPID");