diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-01-26 15:24:21 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-01-26 15:25:08 -0700 |
commit | 692aac3122843c59610684802e25b92cc9f0a33c (patch) | |
tree | 6e889f5a53e116998e031291d1c0e2ff653c6493 /src/net/ea/gui | |
parent | fed093879282fac03c4fdcaa0aac519de468f1e1 (diff) | |
download | mana-692aac3122843c59610684802e25b92cc9f0a33c.tar.gz mana-692aac3122843c59610684802e25b92cc9f0a33c.tar.bz2 mana-692aac3122843c59610684802e25b92cc9f0a33c.tar.xz mana-692aac3122843c59610684802e25b92cc9f0a33c.zip |
Fix a few more _SUPPORT ifdefs and namespace PartyTab
Diffstat (limited to 'src/net/ea/gui')
-rw-r--r-- | src/net/ea/gui/partytab.cpp | 4 | ||||
-rw-r--r-- | src/net/ea/gui/partytab.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/ea/gui/partytab.cpp b/src/net/ea/gui/partytab.cpp index 24bd739b..d555743c 100644 --- a/src/net/ea/gui/partytab.cpp +++ b/src/net/ea/gui/partytab.cpp @@ -35,6 +35,8 @@ #include "utils/gettext.h" #include "utils/stringutils.h" +namespace EAthena { + PartyTab::PartyTab() : ChatTab(_("Party")) { @@ -206,3 +208,5 @@ int PartyTab::getType() const { return ChatTab::PARTY; } + +} // namespace EAthena diff --git a/src/net/ea/gui/partytab.h b/src/net/ea/gui/partytab.h index afbc8fd9..9ab0862a 100644 --- a/src/net/ea/gui/partytab.h +++ b/src/net/ea/gui/partytab.h @@ -24,6 +24,8 @@ #include "gui/widgets/chattab.h" +namespace EAthena { + /** * A tab for a party chat channel. */ @@ -45,4 +47,6 @@ class PartyTab : public ChatTab extern PartyTab *partyTab; +} // namespace EAthena + #endif // EA_PARTYTAB_H |