diff options
Diffstat (limited to 'src/gui/widgets/tabs')
-rw-r--r-- | src/gui/widgets/tabs/chat/gmtab.h | 4 | ||||
-rw-r--r-- | src/gui/widgets/tabs/setup_relations.h | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/setuptab.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/widgets/tabs/chat/gmtab.h b/src/gui/widgets/tabs/chat/gmtab.h index 70ab7198e..1f2dff882 100644 --- a/src/gui/widgets/tabs/chat/gmtab.h +++ b/src/gui/widgets/tabs/chat/gmtab.h @@ -37,11 +37,11 @@ class GmTab final : public ChatTab protected: void getAutoCompleteList(StringVect &names) const - override final A_CONST; + override final; void handleInput(const std::string &msg) override final; - void handleCommandStr(const std::string &msg) override final A_CONST; + void handleCommandStr(const std::string &msg) override final; }; extern GmTab *gmChatTab; diff --git a/src/gui/widgets/tabs/setup_relations.h b/src/gui/widgets/tabs/setup_relations.h index 920169158..8d956c619 100644 --- a/src/gui/widgets/tabs/setup_relations.h +++ b/src/gui/widgets/tabs/setup_relations.h @@ -48,7 +48,7 @@ class Setup_Relations final : public SetupTab, void apply() override final; - void cancel() override final A_CONST; + void cancel() override final; void reset(); diff --git a/src/gui/widgets/tabs/setuptab.h b/src/gui/widgets/tabs/setuptab.h index 68c3dd191..39ec26e45 100644 --- a/src/gui/widgets/tabs/setuptab.h +++ b/src/gui/widgets/tabs/setuptab.h @@ -53,9 +53,9 @@ class SetupTab notfinal : public Container, */ virtual void cancel() = 0; - virtual void externalUpdated() A_CONST; + virtual void externalUpdated(); - virtual void externalUnloaded() A_CONST; + virtual void externalUnloaded(); protected: explicit SetupTab(const Widget2 *const widget); |