summaryrefslogtreecommitdiffstats
path: root/smglobals.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2011-05-07 09:38:40 +0200
committerArno <am@disconnect.de>2011-05-07 09:38:40 +0200
commit25bd284eec824853e211c84861de4246ffbf6d3a (patch)
treee83c892a36a24d943006231201623b0b6d767060 /smglobals.cpp
parent3cd7ca9ef0f2191ed0fe609c192c627430a07883 (diff)
downloadSheMov-25bd284eec824853e211c84861de4246ffbf6d3a.tar.gz
SheMov-25bd284eec824853e211c84861de4246ffbf6d3a.tar.bz2
SheMov-25bd284eec824853e211c84861de4246ffbf6d3a.zip
Implement additional title element for seriesparts
Series parts can now have an additional title elemet, the so called subtitle. Obviously that's not really a good name but it's the best I could come up with :)
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 005c710..0ee07c5 100644
--- a/smglobals.cpp
+++ b/smglobals.cpp
@@ -58,7 +58,7 @@ SmGlobals *SmGlobals::instance(){
QAbstractItemModel *SmGlobals::model(const QString &which){
if(which == "SeriesModel"){
if(!mModels.contains(which)){
- QStringList headers = QStringList() << tr("Series") << tr("Series ID") << tr("Series part ID") << tr("Part") << tr("Type") << tr("Favorite");
+ QStringList headers = QStringList() << tr("Series") << tr("Series ID") << tr("Series part ID") << tr("Part") << tr("Type") << tr("Favorite") << tr("Subtitle");
SeriesTreeModel *model = new SeriesTreeModel(headers);
mModels.insert(which, model);
}