mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #896508 (unused variable warnings)
This commit is contained in:
parent
209344e319
commit
9c7775e43d
@ -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…
x
Reference in New Issue
Block a user