summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/itemname.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/itemname.h')
-rw-r--r--crawl-ref/source/itemname.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/crawl-ref/source/itemname.h b/crawl-ref/source/itemname.h
index 46b06f3d41..14c0c5295e 100644
--- a/crawl-ref/source/itemname.h
+++ b/crawl-ref/source/itemname.h
@@ -88,26 +88,26 @@ enum
NDSC_BOOK_SEC = 8,
};
-bool is_vowel( const char chr );
-int property( const item_def &item, int prop_type );
+bool is_vowel(const char chr);
+int property(const item_def &item, int prop_type);
const char* racial_description_string(const item_def& item, bool terse = false);
bool check_item_knowledge(bool quiet = false, bool inverted = false);
-std::string quant_name( const item_def &item, int quant,
- description_level_type des, bool terse = false );
+std::string quant_name(const item_def &item, int quant,
+ description_level_type des, bool terse = false);
-bool item_type_known( const item_def &item );
-bool item_type_unknown( const item_def &item );
-bool item_type_known( const object_class_type base_type, const int sub_type );
-bool item_type_tried( const item_def &item );
+bool item_type_known(const item_def &item);
+bool item_type_unknown(const item_def &item);
+bool item_type_known(const object_class_type base_type, const int sub_type);
+bool item_type_tried(const item_def &item);
-bool is_interesting_item( const item_def& item );
-bool is_emergency_item( const item_def& item );
+bool is_interesting_item(const item_def& item);
+bool is_emergency_item(const item_def& item);
bool is_good_item(const item_def &item);
bool is_bad_item(const item_def &item, bool temp = false);
-bool is_dangerous_item( const item_def& item, bool temp = false);
+bool is_dangerous_item(const item_def& item, bool temp = false);
bool is_useless_item(const item_def &item, bool temp = false);
std::string make_name(uint32_t seed, bool all_caps, int maxlen = -1,
@@ -125,9 +125,9 @@ id_arr& get_typeid_array();
item_type_id_state_type get_ident_type(const item_def &item);
item_type_id_state_type get_ident_type(object_class_type basetype,
int subtype);
-void set_ident_type( item_def &item, item_type_id_state_type setting,
+void set_ident_type(item_def &item, item_type_id_state_type setting,
bool force = false);
-void set_ident_type( object_class_type basetype, int subtype,
+void set_ident_type(object_class_type basetype, int subtype,
item_type_id_state_type setting, bool force = false);
std::string menu_colour_item_prefix(const item_def &item, bool temp = true);