Make jumpToPage strip-aware
[qcomicbook-oblomov] / src / listviewthumbnail.cpp
1 /*
2  * This file is a part of QComicBook.
3  *
4  * Copyright (C) 2005-2006 Pawel Stolowski <yogin@linux.bydg.org>
5  *
6  * QComicBook is free software; you can redestribute it and/or modify it
7  * under terms of GNU General Public License by Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY. See GPL for more details.
11  */
12
13 #include "listviewthumbnail.h"
14
15 using namespace QComicBook;
16
17 ListViewThumbnail::ListViewThumbnail(QListView *parent, QListViewItem *after, int page): QCheckListItem(parent, after, QString::number(page+1), QCheckListItem::CheckBox), ThumbnailItem(page)
18 {
19 }
20
21 ListViewThumbnail::~ListViewThumbnail()
22 {
23 }
24