summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.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/notes.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/notes.h')
-rw-r--r--crawl-ref/source/notes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/notes.h b/crawl-ref/source/notes.h
index 36fd2af55e..bc20377cdb 100644
--- a/crawl-ref/source/notes.h
+++ b/crawl-ref/source/notes.h
@@ -53,12 +53,12 @@ enum NOTE_TYPES
struct Note
{
Note();
- Note( NOTE_TYPES t, int f = 0, int s = 0, const char* n = 0,
+ Note(NOTE_TYPES t, int f = 0, int s = 0, const char* n = 0,
const char* d = 0);
void save(writer& outf) const;
void load(reader& inf);
- std::string describe( bool when = true, bool where = true,
- bool what = true ) const;
+ std::string describe(bool when = true, bool where = true,
+ bool what = true) const;
void check_milestone() const;
NOTE_TYPES type;
@@ -71,9 +71,9 @@ struct Note
};
extern std::vector<Note> note_list;
-void activate_notes( bool active );
+void activate_notes(bool active);
bool notes_are_active();
-void take_note( const Note& note, bool force = false );
+void take_note(const Note& note, bool force = false);
void save_notes(writer&);
void load_notes(reader&);
void make_user_note();