mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Fix a typo in Viewer::magnifyingGlassShowed name
Make Viewer::magnifyingGlassIsVisible() const.
This commit is contained in:
@ -78,7 +78,7 @@ public slots:
|
||||
void animateHideGoToFlow();
|
||||
void rotateLeft();
|
||||
void rotateRight();
|
||||
bool magnifyingGlassIsVisible() { return magnifyingGlassShowed; }
|
||||
bool magnifyingGlassIsVisible() const { return magnifyingGlassShown; }
|
||||
void setBookmark(bool);
|
||||
void save();
|
||||
void doublePageSwitch();
|
||||
@ -157,7 +157,7 @@ private:
|
||||
private:
|
||||
//! Magnifying glass
|
||||
MagnifyingGlass *mglass;
|
||||
bool magnifyingGlassShowed;
|
||||
bool magnifyingGlassShown;
|
||||
bool restoreMagnifyingGlass;
|
||||
|
||||
//! Manejadores de evento:
|
||||
|
Reference in New Issue
Block a user