diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-02-24 20:15:19 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-02-24 20:15:19 +0000 |
commit | 1c4742e530271e10ae949cf7e85402bee867e298 (patch) | |
tree | f95927614c4f9a84a507c9425b882f945be6d09f /src/gui/tabbedcontainer.h | |
parent | 05a12d5568111fa13759026442ed358605bf9a28 (diff) | |
download | mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.gz mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.bz2 mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.xz mana-1c4742e530271e10ae949cf7e85402bee867e298.zip |
Another bunch of cosmetic cleanups, ie mostly typedefs...
Diffstat (limited to 'src/gui/tabbedcontainer.h')
-rw-r--r-- | src/gui/tabbedcontainer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/tabbedcontainer.h b/src/gui/tabbedcontainer.h index 89c10c1c..24c8c425 100644 --- a/src/gui/tabbedcontainer.h +++ b/src/gui/tabbedcontainer.h @@ -48,8 +48,10 @@ class TabbedContainer : public gcn::Container, public gcn::ActionListener void setOpaque(bool opaque); private: - std::vector<gcn::Widget*> mTabs; // The actual tabs at the top - std::vector<gcn::Widget*> mContents; // The contents of the tabs + typedef std::vector<gcn::Widget*> Widgets; + typedef Widgets::iterator WidgetIterator; + Widgets mTabs; // The actual tabs at the top + Widgets mContents; // The contents of the tabs Widget *mActiveContent; }; |