diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-28 21:44:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-28 21:49:37 +0300 |
commit | a83513ef88a9cfca8692db9176b68ddeea71931f (patch) | |
tree | 1d01876eb230a36d5c5f98cddd9c57e2476150ab /src/gui/popupmanager.h | |
parent | cfc84945c9cee7d42accdad39ff387738a3d32ac (diff) | |
download | mv-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.gz mv-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.bz2 mv-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.xz mv-a83513ef88a9cfca8692db9176b68ddeea71931f.zip |
Fix code style.
Diffstat (limited to 'src/gui/popupmanager.h')
-rw-r--r-- | src/gui/popupmanager.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/popupmanager.h b/src/gui/popupmanager.h index c34934798..49b0c7fd6 100644 --- a/src/gui/popupmanager.h +++ b/src/gui/popupmanager.h @@ -40,28 +40,28 @@ class PopupManager final */ ~PopupManager(); - bool isBeingPopupVisible() const; + static bool isBeingPopupVisible() A_WARN_UNUSED; - bool isTextPopupVisible() const; + static bool isTextPopupVisible() A_WARN_UNUSED; /** * Closes the popup menu. Needed for when the player dies or switching * maps. */ - void closePopupMenu(); + static void closePopupMenu(); /** * Hides the BeingPopup. */ - void hideBeingPopup(); + static void hideBeingPopup(); - void hideTextPopup(); + static void hideTextPopup(); - bool isPopupMenuVisible() const A_WARN_UNUSED; + static bool isPopupMenuVisible() A_WARN_UNUSED; - void clearPopup(); + static void clearPopup(); - void hidePopupMenu(); + static void hidePopupMenu(); }; extern PopupManager *popupManager; |