mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Use fully qualified names
This commit is contained in:
parent
9ebd6e32da
commit
bdb23de74a
@ -1338,7 +1338,7 @@ void PictureFlow::setMarkImage(const QImage &m)
|
||||
d->state->mark = m;
|
||||
}
|
||||
|
||||
void PictureFlow::markSlide(int index, YACReaderComicReadStatus readStatus)
|
||||
void PictureFlow::markSlide(int index, YACReader::YACReaderComicReadStatus readStatus)
|
||||
{
|
||||
if (index < d->state->marks.size())
|
||||
d->state->marks[index] = readStatus;
|
||||
@ -1356,7 +1356,7 @@ void PictureFlow::unmarkSlide(int index)
|
||||
d->state->marks[index] = YACReader::Unread;
|
||||
}
|
||||
|
||||
void PictureFlow::setMarks(const QVector<YACReaderComicReadStatus> &m)
|
||||
void PictureFlow::setMarks(const QVector<YACReader::YACReaderComicReadStatus> &m)
|
||||
{
|
||||
d->state->marks = m;
|
||||
updateMarks();
|
||||
|
@ -187,21 +187,21 @@ public slots:
|
||||
*/
|
||||
void triggerRender();
|
||||
|
||||
void setFlowType(FlowType flowType);
|
||||
void setFlowType(YACReader::FlowType flowType);
|
||||
|
||||
void setMarkImage(const QImage &mark);
|
||||
|
||||
void markSlide(int index, YACReaderComicReadStatus readStatus = Read);
|
||||
void markSlide(int index, YACReader::YACReaderComicReadStatus readStatus = Read);
|
||||
|
||||
void updateMarks();
|
||||
|
||||
void unmarkSlide(int index);
|
||||
|
||||
void setMarks(const QVector<YACReaderComicReadStatus> &marks);
|
||||
void setMarks(const QVector<YACReader::YACReaderComicReadStatus> &marks);
|
||||
|
||||
void setShowMarks(bool enable);
|
||||
|
||||
QVector<YACReaderComicReadStatus> getMarks();
|
||||
QVector<YACReader::YACReaderComicReadStatus> getMarks();
|
||||
|
||||
void resortCovers(QList<int> newOrder);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user