From 0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 30 Oct 2012 13:05:34 +0300 Subject: Add unused warnings to other files. --- src/gui/widgets/tabbedarea.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/gui/widgets/tabbedarea.h') diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index e25183885..9c66acbfe 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -64,26 +64,26 @@ class TabbedArea final : public Widget2, * * @todo Remove this method when upgrading to Guichan 0.9.0 */ - int getNumberOfTabs() const; + int getNumberOfTabs() const A_WARN_UNUSED; /** * Return tab with specified name as caption. */ - Tab *getTab(const std::string &name) const; + Tab *getTab(const std::string &name) const A_WARN_UNUSED; - Tab *getTabByIndex(const int index) const; + Tab *getTabByIndex(const int index) const A_WARN_UNUSED; - gcn::Widget *getWidgetByIndex(const int index) const; + gcn::Widget *getWidgetByIndex(const int index) const A_WARN_UNUSED; /** * Returns the widget with the tab that has specified caption */ - gcn::Widget *getWidget(const std::string &name) const; + gcn::Widget *getWidget(const std::string &name) const A_WARN_UNUSED; /** * Returns the widget for the current tab */ - gcn::Widget *getCurrentWidget(); + gcn::Widget *getCurrentWidget() A_WARN_UNUSED; /** * Add a tab. Overridden since it needs to size the widget. @@ -95,9 +95,9 @@ class TabbedArea final : public Widget2, void addTab(const std::string &caption, gcn::Widget *const widget); - bool isTabSelected(unsigned int index) const; + bool isTabSelected(unsigned int index) const A_WARN_UNUSED; - bool isTabSelected(Tab* tab); + bool isTabSelected(Tab* tab) A_WARN_UNUSED; /** * Overload the remove tab function as it's broken in guichan 0.8. @@ -111,22 +111,22 @@ class TabbedArea final : public Widget2, */ void logic() override; - int getContainerHeight() const + int getContainerHeight() const A_WARN_UNUSED { return mWidgetContainer->getHeight(); } void setSelectedTab(Tab *tab); void setSelectedTab(unsigned int index); - int getSelectedTabIndex() const; + int getSelectedTabIndex() const A_WARN_UNUSED; - Tab* getSelectedTab() + Tab* getSelectedTab() A_WARN_UNUSED { return mSelectedTab; } void setOpaque(bool opaque) { mOpaque = opaque; } - bool isOpaque() const + bool isOpaque() const A_WARN_UNUSED { return mOpaque; } void adjustSize(); @@ -155,13 +155,13 @@ class TabbedArea final : public Widget2, void setRightMargin(int n) { mRightMargin = n; } - int getRightMargin() const + int getRightMargin() const A_WARN_UNUSED { return mRightMargin; } void setFollowDownScroll(bool n) { mFollowDownScroll = n; } - bool getFollowDownScroll() const + bool getFollowDownScroll() const A_WARN_UNUSED { return mFollowDownScroll; } void fixSize() -- cgit v1.2.3-60-g2f50