summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-06-07 21:47:00 +0300
committerAndrei Karas <akaras@inbox.ru>2013-06-07 21:47:00 +0300
commit4f8e8c36290e46c00fa0266c4e4af553fac59a4c (patch)
tree618c1c9359a44aae173d5f7276e4bbfafccd7111 /src/resources
parentb638b4ca0dbe20e83e30a18f30357ddcc85c64d8 (diff)
downloadplus-4f8e8c36290e46c00fa0266c4e4af553fac59a4c.tar.gz
plus-4f8e8c36290e46c00fa0266c4e4af553fac59a4c.tar.bz2
plus-4f8e8c36290e46c00fa0266c4e4af553fac59a4c.tar.xz
plus-4f8e8c36290e46c00fa0266c4e4af553fac59a4c.zip
Fix code style.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/monsterdb.cpp1
-rw-r--r--src/resources/npcdb.cpp1
-rw-r--r--src/resources/npcdb.h2
3 files changed, 1 insertions, 3 deletions
diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp
index 9a47b7c61..3d6473fd6 100644
--- a/src/resources/monsterdb.cpp
+++ b/src/resources/monsterdb.cpp
@@ -244,7 +244,6 @@ void MonsterDB::loadXmlFile(const std::string &fileName)
mMonsterInfos[XML::getProperty(
monsterNode, "id", 0) + offset] = currentInfo;
}
-
}
void MonsterDB::unload()
diff --git a/src/resources/npcdb.cpp b/src/resources/npcdb.cpp
index fe10370a5..bafef22c8 100644
--- a/src/resources/npcdb.cpp
+++ b/src/resources/npcdb.cpp
@@ -136,7 +136,6 @@ void NPCDB::loadXmlFile(const std::string &fileName)
currentInfo->setDisplay(display);
mNPCInfos[id] = currentInfo;
}
-
}
void NPCDB::unload()
diff --git a/src/resources/npcdb.h b/src/resources/npcdb.h
index 83d938f5a..9614c2052 100644
--- a/src/resources/npcdb.h
+++ b/src/resources/npcdb.h
@@ -45,6 +45,6 @@ namespace NPCDB
uint16_t getAvatarFor(const int id);
void loadXmlFile(const std::string &fileName);
-}
+} // namespace NPCDB
#endif // RESOURCES_NPCDB_H