diff options
Diffstat (limited to 'src/gui/windows/socialwindow.h')
-rw-r--r-- | src/gui/windows/socialwindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/socialwindow.h b/src/gui/windows/socialwindow.h index 6c23fd292..24cc32c5d 100644 --- a/src/gui/windows/socialwindow.h +++ b/src/gui/windows/socialwindow.h @@ -97,16 +97,16 @@ class SocialWindow final : public Window, void prevTab(); - const Map* getMap() const A_WARN_UNUSED + const Map* getMap() const noexcept2 A_WARN_UNUSED { return mMap; } void setMap(Map *const map) { mMap = map; mProcessedPortals = false; } - bool getProcessedPortals() const A_WARN_UNUSED + bool getProcessedPortals() const noexcept2 A_WARN_UNUSED { return mProcessedPortals; } - void setProcessedPortals(const bool n) + void setProcessedPortals(const bool n) noexcept2 { mProcessedPortals = n; } void selectPortal(const unsigned num); |