mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 15:33:37 +02:00
Fix #896508 (unused variable warnings)
This commit is contained in:
parent
209344e319
commit
9c7775e43d
1 changed files with 3 additions and 3 deletions
|
|
@ -1409,8 +1409,8 @@ void PictureFlow::dataChanged() { d->dataChanged(); }
|
|||
void PictureFlow::emitcurrentChanged(int index) { emit currentChanged(index); }
|
||||
|
||||
int FlowImages::count() { return 0; }
|
||||
QImage FlowImages::image(int index) { index=0; return QImage(); }
|
||||
QString FlowImages::caption(int index) {index=0; return QString(); }
|
||||
QString FlowImages::subtitle(int index) {index=0; return QString(); }
|
||||
QImage FlowImages::image(int index) { Q_UNUSED(index); return QImage(); }
|
||||
QString FlowImages::caption(int index) { Q_UNUSED(index); return QString(); }
|
||||
QString FlowImages::subtitle(int index) { Q_UNUSED(index); return QString(); }
|
||||
|
||||
// }}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue