From 35fa03549b1951b32cbb333c58f756f1f09605b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Fri, 1 Oct 2021 19:50:52 +0200 Subject: [PATCH] Use fully qualified names --- common/gl/yacreader_flow_gl.cpp | 4 ++-- common/gl/yacreader_flow_gl.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common/gl/yacreader_flow_gl.cpp b/common/gl/yacreader_flow_gl.cpp index 07d19062..9aa54306 100644 --- a/common/gl/yacreader_flow_gl.cpp +++ b/common/gl/yacreader_flow_gl.cpp @@ -950,7 +950,7 @@ void YACReaderFlowGL::setShowMarks(bool value) showMarks = value; } -void YACReaderFlowGL::setMarks(QVector marks) +void YACReaderFlowGL::setMarks(QVector 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(); diff --git a/common/gl/yacreader_flow_gl.h b/common/gl/yacreader_flow_gl.h index bc6bb6e2..2b51a1af 100644 --- a/common/gl/yacreader_flow_gl.h +++ b/common/gl/yacreader_flow_gl.h @@ -252,9 +252,9 @@ public slots: // interface with yacreaderlibrary, compatibility void setShowMarks(bool value); - void setMarks(QVector marks); + void setMarks(QVector 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();