Use const overloading on BALMLayout::{X|Y}TabAt().

This commit is contained in:
Alex Wilson
2012-05-03 08:45:26 +12:00
parent d7568eabd2
commit bc7956c7cf
2 changed files with 19 additions and 0 deletions
+3
View File
@@ -49,7 +49,10 @@ public:
int32 CountXTabs() const;
int32 CountYTabs() const;
XTab* XTabAt(int32 index, bool ordered = false);
XTab* XTabAt(int32 index) const;
YTab* YTabAt(int32 index, bool ordered = false);
YTab* YTabAt(int32 index) const;
int32 IndexOf(XTab* tab, bool ordered = false);
int32 IndexOf(YTab* tab, bool ordered = false);