diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-08-07 19:53:55 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-08-07 19:53:55 +0000 |
commit | 41802000a0bcbb44c3add7f218eceec101f52cc0 (patch) | |
tree | eb6e64d81cf9e3ab4a17a19031d5506ca7be405f /movieitem.h | |
parent | cbf3c617d366892cf6af9b5fdbc5286e47ca4b42 (diff) | |
download | SheMov-41802000a0bcbb44c3add7f218eceec101f52cc0.tar.gz SheMov-41802000a0bcbb44c3add7f218eceec101f52cc0.tar.bz2 SheMov-41802000a0bcbb44c3add7f218eceec101f52cc0.zip |
-fixed sorting in ArchiveProxy: had to introduce two new fields to MovieModel: partno and seriesno
-made changes to archiveviewiwdget.cpp and dialogs accordingly
git-svn-id: file:///var/svn/repos2/shemov/trunk@400 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'movieitem.h')
-rw-r--r-- | movieitem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/movieitem.h b/movieitem.h index 70bfc88..a20cf52 100644 --- a/movieitem.h +++ b/movieitem.h @@ -21,8 +21,8 @@ class MovieItem : public QObject { Q_OBJECT Q_ENUMS(Columns) public: - enum Columns { Title = 0, Filename = 1, Md5Sum = 2, Size = 3, Genre = 4, Quality = 5, Dvd = 6 }; - enum { NumRows = 7 }; + enum Columns { Title = 0, Filename = 1, Md5Sum = 2, Size = 3, Genre = 4, Quality = 5, Dvd = 6, SeriesNo = 7, PartNo = 8 }; + enum { NumRows = 9 }; MovieItem(int id = -1, QObject *parent = 0); ~MovieItem() {}; int id() const { return mId; }; |