diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-03-09 13:34:54 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-07-25 13:46:52 +0200 |
commit | 6e8c48dc593d8b6e5cebd15a980074715223b572 (patch) | |
tree | 7977c539a2e3a2d344d156fc53fde9848dc84ca1 /src/qt/modaloverlay.h | |
parent | 0c70e845aa9277a4ceb8307f0ad8f1bf7511e3c8 (diff) |
Add const to methods that do not modify the object for which it is called
Diffstat (limited to 'src/qt/modaloverlay.h')
-rw-r--r-- | src/qt/modaloverlay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/modaloverlay.h b/src/qt/modaloverlay.h index 21ccdbd839..cda23f9540 100644 --- a/src/qt/modaloverlay.h +++ b/src/qt/modaloverlay.h @@ -32,7 +32,7 @@ public Q_SLOTS: // will show or hide the modal layer void showHide(bool hide = false, bool userRequested = false); void closeClicked(); - bool isLayerVisible() { return layerIsVisible; } + bool isLayerVisible() const { return layerIsVisible; } protected: bool eventFilter(QObject * obj, QEvent * ev); |