summaryrefslogtreecommitdiff
path: root/src/net/ea/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ea/gui')
-rw-r--r--src/net/ea/gui/partytab.cpp4
-rw-r--r--src/net/ea/gui/partytab.h4
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