diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-18 19:46:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-18 21:52:08 +0300 |
commit | c0d5142d1ed98b62ad87603fa9d2620dce256bd7 (patch) | |
tree | 6acc4c089999353ef39c83c3bef34bbf89dbfdd3 /src/gui/widgets/tabbedarea.h | |
parent | e85c6227064c905945a4d49a5e11a0078243a1ac (diff) | |
download | mv-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.gz mv-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.bz2 mv-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.tar.xz mv-c0d5142d1ed98b62ad87603fa9d2620dce256bd7.zip |
add consts in gui classes.
Diffstat (limited to 'src/gui/widgets/tabbedarea.h')
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 034257e8f..dd74405fc 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -100,14 +100,14 @@ class TabbedArea final : public Widget2, bool isTabSelected(const unsigned int index) const A_WARN_UNUSED; - bool isTabSelected(Tab *const tab) const A_WARN_UNUSED; + bool isTabSelected(const Tab *const tab) const A_WARN_UNUSED; /** * Overload the remove tab function as it's broken in guichan 0.8. */ void removeTab(Tab *const tab); - void removeAll(bool del = true); + void removeAll(const bool del = true); /** * Overload the logic function since it's broken in guichan 0.8. |