Added experimental cashflow analysis stylesheet.
[account.git] / account.cpp
index 2ed692c..39e9031 100644 (file)
@@ -59,7 +59,7 @@ std::ostream &operator<<(std::ostream &s, amount a)
    else
    {
       //s << form("%8d.%02d",a / 100, a % 100);
-      s << std::setw(8) << a / 100 << ".";
+      s << std::setw(8) << std::setfill(' ') << a / 100 << ".";
       s << std::setw(2) << std::setfill('0') << a % 100;
       s << std::setw(0) << std::setfill(' ');
    }