diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-22 02:35:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-22 02:35:52 +0300 |
commit | 72be37009a0bbd6594e10ac19bd90830c42f178b (patch) | |
tree | 69eef04e00a4562b14bdb4b875ab2ab66569d8c8 | |
parent | 8891c5ee06276db470728a95a468114e8bcc0483 (diff) | |
download | plus-72be37009a0bbd6594e10ac19bd90830c42f178b.tar.gz plus-72be37009a0bbd6594e10ac19bd90830c42f178b.tar.bz2 plus-72be37009a0bbd6594e10ac19bd90830c42f178b.tar.xz plus-72be37009a0bbd6594e10ac19bd90830c42f178b.zip |
Remove default parameter from TabStrip::createWidget.
-rw-r--r-- | src/gui/widgets/tabstrip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/tabstrip.h b/src/gui/widgets/tabstrip.h index eb2824bc5..e1e4ca486 100644 --- a/src/gui/widgets/tabstrip.h +++ b/src/gui/widgets/tabstrip.h @@ -38,7 +38,7 @@ class TabStrip final : public WidgetGroup A_DELETE_COPY(TabStrip) Widget *createWidget(const std::string &name, - const bool pressed = false) + const bool pressed) const override final A_WARN_UNUSED; void action(const ActionEvent &event) override final; |