diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-08-14 18:53:25 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-08-14 18:53:25 +0000 |
commit | 06233888b033adc6e821331e6d1822e9807371ae (patch) | |
tree | cc3ded50eb1640805652e1ec77988b39e31d13c8 /moviemodel.h | |
parent | 41802000a0bcbb44c3add7f218eceec101f52cc0 (diff) | |
download | SheMov-06233888b033adc6e821331e6d1822e9807371ae.tar.gz SheMov-06233888b033adc6e821331e6d1822e9807371ae.tar.bz2 SheMov-06233888b033adc6e821331e6d1822e9807371ae.zip |
-Implemented conlumnContains() in MovieModel
-Implemented guess-function in ArchiveEditDialog
-Cumulative size is now shown in statusBar() when selecting items in ArchiveViewWidget
-Fixed EditArchiveItemDialog allowing duplicate titles (neccessary after creating iseriesno and ipartno)
-Fixed windowTitle() when changing tabs
git-svn-id: file:///var/svn/repos2/shemov/trunk@401 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'moviemodel.h')
-rw-r--r-- | moviemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/moviemodel.h b/moviemodel.h index 648a8f9..798a809 100644 --- a/moviemodel.h +++ b/moviemodel.h @@ -25,7 +25,7 @@ class MovieModel : public QAbstractItemModel { ~MovieModel(); QModelIndex index(int row, int column, const QModelIndex &parent) const; QModelIndex index(int movieId, int column = 0) const; - QModelIndex index(const QString &movieTitle) const; + QModelIndexList columnContains(const QVariant &content, int column) const; QModelIndex parent(const QModelIndex &) const { return QModelIndex(); }; int columnCount(const QModelIndex &) const { return MovieItem::NumRows; }; int rowCount(const QModelIndex &) const { return mItems.size(); }; |