summaryrefslogtreecommitdiff
path: root/src/notifymanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-03-12 21:28:54 +0300
committerAndrei Karas <akaras@inbox.ru>2013-03-12 21:28:54 +0300
commit5c66d91e3e69446081ef6254063ad638fbc48aca (patch)
treec3bb94057bcd4bdbb8568e815c7f18c44417a78a /src/notifymanager.cpp
parentf6000c9088ee63428f65ee980f6751f85a7e7d7e (diff)
downloadManaVerse-5c66d91e3e69446081ef6254063ad638fbc48aca.tar.gz
ManaVerse-5c66d91e3e69446081ef6254063ad638fbc48aca.tar.bz2
ManaVerse-5c66d91e3e69446081ef6254063ad638fbc48aca.tar.xz
ManaVerse-5c66d91e3e69446081ef6254063ad638fbc48aca.zip
Fix code style.
Diffstat (limited to 'src/notifymanager.cpp')
-rw-r--r--src/notifymanager.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/notifymanager.cpp b/src/notifymanager.cpp
index 6a0e1f252..e8c52276a 100644
--- a/src/notifymanager.cpp
+++ b/src/notifymanager.cpp
@@ -29,8 +29,6 @@
#include "net/net.h"
#include "net/partyhandler.h"
-#include "utils/gettext.h"
-
namespace NotifyManager
{
static ChatTab *getGuildTab()
@@ -88,6 +86,10 @@ namespace NotifyManager
player_node->setSpeech(gettext(info.text));
}
+ case INT:
+ case STRING:
+ case GUILD_STRING:
+ case PARTY_STRING:
default:
break;
}
@@ -130,6 +132,10 @@ namespace NotifyManager
chatLog(tab, strprintf(gettext(info.text), str.c_str()));
break;
}
+ case INT:
+ case GUILD:
+ case PARTY:
+ case SPEECH:
default:
break;
}