diff options
author | David Athay <ko2fan@gmail.com> | 2008-04-14 17:05:29 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-04-14 17:05:29 +0000 |
commit | bbb40f595e6e20e5106a23e6aa606b825b1e62b4 (patch) | |
tree | dbfe4adf16eb49be93c031587c2ff1694ac0d0e4 /src/gui/guildwindow.h | |
parent | 1ace3a1cec2ea8490af5af0b7d131394543fea11 (diff) | |
download | mana-bbb40f595e6e20e5106a23e6aa606b825b1e62b4.tar.gz mana-bbb40f595e6e20e5106a23e6aa606b825b1e62b4.tar.bz2 mana-bbb40f595e6e20e5106a23e6aa606b825b1e62b4.tar.xz mana-bbb40f595e6e20e5106a23e6aa606b825b1e62b4.zip |
Added new TabbedArea which extends gui::TabbedArea. Changed Guild and
Chat windows to use new TabbedArea. Added private messaging.
Diffstat (limited to 'src/gui/guildwindow.h')
-rw-r--r-- | src/gui/guildwindow.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/guildwindow.h b/src/gui/guildwindow.h index 5f7600e5..f6cb38fd 100644 --- a/src/gui/guildwindow.h +++ b/src/gui/guildwindow.h @@ -45,9 +45,9 @@ class LocalPlayer; class TextDialog; class ConfirmDialog; class GuildListBox; -class TabbedContainer; class ScrollArea; class GCContainer; +class TabbedArea; class GuildWindow : public Window, public gcn::ActionListener { @@ -124,10 +124,9 @@ private: TextDialog *guildDialog; TextDialog *inviteDialog; ConfirmDialog *acceptDialog; - TabbedContainer *mGuildsContainer; + TabbedArea *mGuildTabs; GuildListBox *mGuildMembersList; ScrollArea *mScrollArea; - std::vector<GCContainer*> mTabs; bool mFocus; std::string invitedGuild; }; |