diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-29 18:23:57 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-29 18:23:57 -0400 |
commit | 05c77351e458c08873c813264005f61f828b5383 (patch) | |
tree | fa83d3826d8c113b5ec273671ce6cab3d9fe5388 /src/format.h | |
parent | 119b5dc1975bfc00fb3f376e6ba28594dee12583 (diff) | |
download | fork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.gz fork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.bz2 fork-ledger-05c77351e458c08873c813264005f61f828b5383.zip |
Stopped using the generic "unsigned int" in favor of more specific types.
Diffstat (limited to 'src/format.h')
-rw-r--r-- | src/format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format.h b/src/format.h index fbfe452e..19b19eea 100644 --- a/src/format.h +++ b/src/format.h @@ -185,7 +185,7 @@ public: elem->dump(out); } - static string truncate(const unistring& str, unsigned int width, + static string truncate(const unistring& str, std::size_t width, const bool is_account = false); }; |