summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-04-23 00:41:11 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-04-23 15:31:47 +0200
commit45ba18c89998e6719d4ac55d30705331b249bf31 (patch)
tree9c9a091a836a3e471d54bd582298d7f7d572b3ee /crawl-ref/source/itemname.h
parentd33bf9328f060b9e5555cf45869fdc405c17afc8 (diff)
downloadcrawl-ref-45ba18c89998e6719d4ac55d30705331b249bf31.tar.gz
crawl-ref-45ba18c89998e6719d4ac55d30705331b249bf31.zip
Make a few more functions static/gone.
Diffstat (limited to 'crawl-ref/source/itemname.h')
-rw-r--r--crawl-ref/source/itemname.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/itemname.h b/crawl-ref/source/itemname.h
index 92e719cb85..8b8be5b762 100644
--- a/crawl-ref/source/itemname.h
+++ b/crawl-ref/source/itemname.h
@@ -133,11 +133,10 @@ const char* rune_type_name(int p);
bool is_named_corpse(const item_def &corpse);
std::string get_corpse_name(const item_def &corpse,
uint64_t *name_type = NULL);
-std::string base_type_string (object_class_type type, bool known = true);
-std::string base_type_string (const item_def &item, bool known = true);
+std::string base_type_string(object_class_type type, bool known = true);
+std::string base_type_string(const item_def &item, bool known = true);
-std::string sub_type_string (object_class_type type, int sub_type, bool known = true, int plus = 0);
-std::string sub_type_string (const item_def &item, bool known = true);
+std::string sub_type_string(const item_def &item, bool known = true);
-std::string ego_type_string (const item_def &item);
+std::string ego_type_string(const item_def &item);
#endif