Use fully qualified names

This commit is contained in:
Luis Ángel San Martín 2021-10-01 19:50:52 +02:00
parent 326cebdf7f
commit 35fa03549b
2 changed files with 4 additions and 4 deletions

View File

@ -950,7 +950,7 @@ void YACReaderFlowGL::setShowMarks(bool value)
showMarks = value; showMarks = value;
} }
void YACReaderFlowGL::setMarks(QVector<YACReaderComicReadStatus> marks) void YACReaderFlowGL::setMarks(QVector<YACReader::YACReaderComicReadStatus> marks)
{ {
startAnimationTimer(); startAnimationTimer();
@ -963,7 +963,7 @@ void YACReaderFlowGL::setMarkImage(QImage &image)
// deleteTexture(markTexture); // deleteTexture(markTexture);
// markTexture = bindTexture(image,GL_TEXTURE_2D,GL_RGBA,QGLContext::LinearFilteringBindOption | QGLContext::MipmapBindOption); // 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(); startAnimationTimer();

View File

@ -252,9 +252,9 @@ public slots:
// interface with yacreaderlibrary, compatibility // interface with yacreaderlibrary, compatibility
void setShowMarks(bool value); void setShowMarks(bool value);
void setMarks(QVector<YACReaderComicReadStatus> marks); void setMarks(QVector<YACReader::YACReaderComicReadStatus> marks);
void setMarkImage(QImage &image); void setMarkImage(QImage &image);
void markSlide(int index, YACReaderComicReadStatus status); void markSlide(int index, YACReader::YACReaderComicReadStatus status);
void unmarkSlide(int index); void unmarkSlide(int index);
void setSlideSize(QSize size); void setSlideSize(QSize size);
void clear(); void clear();