summaryrefslogtreecommitdiff
path: root/src/gui/popupmanager.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-28 21:44:08 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-28 21:49:37 +0300
commita83513ef88a9cfca8692db9176b68ddeea71931f (patch)
tree1d01876eb230a36d5c5f98cddd9c57e2476150ab /src/gui/popupmanager.h
parentcfc84945c9cee7d42accdad39ff387738a3d32ac (diff)
downloadManaVerse-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.gz
ManaVerse-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.bz2
ManaVerse-a83513ef88a9cfca8692db9176b68ddeea71931f.tar.xz
ManaVerse-a83513ef88a9cfca8692db9176b68ddeea71931f.zip
Fix code style.
Diffstat (limited to 'src/gui/popupmanager.h')
-rw-r--r--src/gui/popupmanager.h16
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;