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
326cebdf7f
commit
35fa03549b
@ -950,7 +950,7 @@ void YACReaderFlowGL::setShowMarks(bool value)
|
||||
|
||||
showMarks = value;
|
||||
}
|
||||
void YACReaderFlowGL::setMarks(QVector<YACReaderComicReadStatus> marks)
|
||||
void YACReaderFlowGL::setMarks(QVector<YACReader::YACReaderComicReadStatus> marks)
|
||||
{
|
||||
startAnimationTimer();
|
||||
|
||||
@ -963,7 +963,7 @@ void YACReaderFlowGL::setMarkImage(QImage &image)
|
||||
// deleteTexture(markTexture);
|
||||
// markTexture = bindTexture(image,GL_TEXTURE_2D,GL_RGBA,QGLContext::LinearFilteringBindOption | QGLContext::MipmapBindOption);
|
||||
}
|
||||
void YACReaderFlowGL::markSlide(int index, YACReaderComicReadStatus status)
|
||||
void YACReaderFlowGL::markSlide(int index, YACReader::YACReaderComicReadStatus status)
|
||||
{
|
||||
startAnimationTimer();
|
||||
|
||||
|
@ -252,9 +252,9 @@ public slots:
|
||||
|
||||
// interface with yacreaderlibrary, compatibility
|
||||
void setShowMarks(bool value);
|
||||
void setMarks(QVector<YACReaderComicReadStatus> marks);
|
||||
void setMarks(QVector<YACReader::YACReaderComicReadStatus> marks);
|
||||
void setMarkImage(QImage &image);
|
||||
void markSlide(int index, YACReaderComicReadStatus status);
|
||||
void markSlide(int index, YACReader::YACReaderComicReadStatus status);
|
||||
void unmarkSlide(int index);
|
||||
void setSlideSize(QSize size);
|
||||
void clear();
|
||||
|
Loading…
Reference in New Issue
Block a user