summaryrefslogtreecommitdiff
path: root/src/gui/widgets/setupitem.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-17 20:03:14 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-17 20:03:14 +0300
commit55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch)
treeb1108bef76eed589fcb0028c4bd97f14510e940f /src/gui/widgets/setupitem.h
parent72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff)
downloadplus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.gz
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.bz2
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.xz
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.zip
Remove override keyword, if it present with final.
Diffstat (limited to 'src/gui/widgets/setupitem.h')
-rw-r--r--src/gui/widgets/setupitem.h68
1 files changed, 34 insertions, 34 deletions
diff --git a/src/gui/widgets/setupitem.h b/src/gui/widgets/setupitem.h
index c7bea7af7..ac25a298f 100644
--- a/src/gui/widgets/setupitem.h
+++ b/src/gui/widgets/setupitem.h
@@ -174,9 +174,9 @@ class SetupItemCheckBox final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
protected:
CheckBox *mCheckBox;
@@ -208,22 +208,22 @@ class SetupItemTextField final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
- void action(const ActionEvent &event) override final;
+ void action(const ActionEvent &event) final;
- void apply(const std::string &eventName) override final;
+ void apply(const std::string &eventName) final;
- void cancel(const std::string &eventName A_UNUSED) override final;
+ void cancel(const std::string &eventName A_UNUSED) final;
void externalUpdated(const std::string &eventName A_UNUSED)
- override final;
+ final;
- void rereadValue() override final;
+ void rereadValue() final;
- void save() override final;
+ void save() final;
void setUseBase64(const UseBase64 b)
{ mUseBase64 = b; }
@@ -263,13 +263,13 @@ class SetupItemIntTextField final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
- void action(const ActionEvent &event) override final;
+ void action(const ActionEvent &event) final;
- void apply(const std::string &eventName) override final;
+ void apply(const std::string &eventName) final;
protected:
HorizontContainer *mHorizont;
@@ -295,13 +295,13 @@ class SetupItemLabel final : public SetupItem
void createControls();
- void fromWidget() override final A_CONST;
+ void fromWidget() final A_CONST;
- void toWidget() override final A_CONST;
+ void toWidget() final A_CONST;
- void action(const ActionEvent &event) override final A_CONST;
+ void action(const ActionEvent &event) final A_CONST;
- void apply(const std::string &eventName) override final A_CONST;
+ void apply(const std::string &eventName) final A_CONST;
protected:
Label *mLabel;
@@ -336,9 +336,9 @@ class SetupItemDropDown final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
protected:
HorizontContainer *mHorizont;
@@ -382,13 +382,13 @@ class SetupItemSlider final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
- void action(const ActionEvent &event) override final;
+ void action(const ActionEvent &event) final;
- void apply(const std::string &eventName) override final;
+ void apply(const std::string &eventName) final;
void updateLabel();
@@ -439,13 +439,13 @@ class SetupItemSlider2 final : public SetupItem
void createControls();
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
- void action(const ActionEvent &event) override final;
+ void action(const ActionEvent &event) final;
- void apply(const std::string &eventName) override final;
+ void apply(const std::string &eventName) final;
void setInvertValue(const int v);
@@ -483,7 +483,7 @@ class SetupItemSliderList notfinal : public SetupItem
void action(const ActionEvent &event) override;
- void apply(const std::string &eventName) override final;
+ void apply(const std::string &eventName) final;
virtual void addMoreControls() = 0;
@@ -532,9 +532,9 @@ class SetupItemSound final : public SetupItemSliderList
A_DELETE_COPY(SetupItemSound)
- void action(const ActionEvent &event) override final;
+ void action(const ActionEvent &event) final;
- void addMoreControls() override final;
+ void addMoreControls() final;
protected:
Button *mButton;
@@ -556,11 +556,11 @@ class SetupItemSliderInt final : public SetupItemSliderList
A_DELETE_COPY(SetupItemSliderInt)
- void addMoreControls() override final;
+ void addMoreControls() final;
- void fromWidget() override final;
+ void fromWidget() final;
- void toWidget() override final;
+ void toWidget() final;
protected:
int mMin;