summaryrefslogtreecommitdiff
path: root/src/format.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-11 16:03:50 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-11 17:02:25 -0400
commitdea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch)
tree7908da76c67ae5172882306a319bf26df81b73b4 /src/format.h
parentd580079df892c30d023b3211d6c4611c17b11f8f (diff)
downloadfork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz
fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2
fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip
Untabified all source files
Diffstat (limited to 'src/format.h')
-rw-r--r--src/format.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/format.h b/src/format.h
index 72d44ee5..a0b95567 100644
--- a/src/format.h
+++ b/src/format.h
@@ -61,10 +61,10 @@ class format_t : public expr_base_t<string>
enum kind_t { STRING, EXPR };
- kind_t type;
- std::size_t min_width;
- std::size_t max_width;
- variant<string, expr_t> data;
+ kind_t type;
+ std::size_t min_width;
+ std::size_t max_width;
+ variant<string, expr_t> data;
scoped_ptr<struct element_t> next;
element_t() throw()
@@ -80,11 +80,11 @@ class format_t : public expr_base_t<string>
element_t& operator=(const element_t& elem) {
if (this != &elem) {
- supports_flags<>::operator=(elem);
- type = elem.type;
- min_width = elem.min_width;
- max_width = elem.max_width;
- data = elem.data;
+ supports_flags<>::operator=(elem);
+ type = elem.type;
+ min_width = elem.min_width;
+ max_width = elem.max_width;
+ data = elem.data;
}
return *this;
}
@@ -95,12 +95,12 @@ class format_t : public expr_base_t<string>
out << "\033[31m";
if (elem->has_flags(ELEMENT_ALIGN_LEFT))
- out << std::left;
+ out << std::left;
else
- out << std::right;
+ out << std::right;
if (elem->min_width > 0)
- out.width(elem->min_width);
+ out.width(elem->min_width);
}
void dump(std::ostream& out) const;
@@ -120,7 +120,7 @@ public:
private:
static element_t * parse_elements(const string& fmt,
- const optional<format_t&>& tmpl);
+ const optional<format_t&>& tmpl);
public:
format_t() : base_type() {
@@ -137,7 +137,7 @@ public:
}
void parse_format(const string& _format,
- const optional<format_t&>& tmpl = none) {
+ const optional<format_t&>& tmpl = none) {
elements.reset(parse_elements(_format, tmpl));
set_text(_format);
}
@@ -146,14 +146,14 @@ public:
virtual void dump(std::ostream& out) const {
for (const element_t * elem = elements.get();
- elem;
- elem = elem->next.get())
+ elem;
+ elem = elem->next.get())
elem->dump(out);
}
static string truncate(const unistring& str,
- const std::size_t width,
- const std::size_t account_abbrev_length = 0);
+ const std::size_t width,
+ const std::size_t account_abbrev_length = 0);
};
} // namespace ledger