summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/format.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-02 19:18:15 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-02 19:18:15 +0000
commit922f361918c7a0b9fa3cb2aebb505d2de1b35af0 (patch)
treefa8b517770c8af048353d161d640f8d2af5ae3e1 /crawl-ref/source/format.h
parent0a4efdf86b33220269f7439aeb5952a88d50efa7 (diff)
downloadcrawl-ref-922f361918c7a0b9fa3cb2aebb505d2de1b35af0.tar.gz
crawl-ref-922f361918c7a0b9fa3cb2aebb505d2de1b35af0.zip
Add whitespace fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5437 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/format.h')
-rw-r--r--crawl-ref/source/format.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/format.h b/crawl-ref/source/format.h
index e2b997e3b8..3e7bc4374f 100644
--- a/crawl-ref/source/format.h
+++ b/crawl-ref/source/format.h
@@ -57,11 +57,11 @@ public:
const std::string &s,
bool eot_ends_format = true,
bool (*process_tag)(const std::string &tag) = NULL );
-
+
static void parse_string_to_multiple(
const std::string &s,
std::vector<formatted_string> &out);
-
+
static formatted_string parse_block(
const std::string &s,
bool eot_ends_format = true,
@@ -85,17 +85,17 @@ public:
int x, y;
bool relative;
std::string text;
-
+
fs_op(int color)
: type(FSOP_COLOUR), x(color), y(-1), relative(false), text()
{
}
-
+
fs_op(int cx, int cy, bool rel = false)
: type(FSOP_CURSOR), x(cx), y(cy), relative(rel), text()
{
}
-
+
fs_op(const std::string &s)
: type(FSOP_TEXT), x(-1), y(-1), relative(false), text(s)
{