summaryrefslogtreecommitdiff
path: root/libs/canvas/poly_item.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/canvas/poly_item.cc')
-rw-r--r--libs/canvas/poly_item.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/canvas/poly_item.cc b/libs/canvas/poly_item.cc
index e43d48fa8d..d6e67ede0c 100644
--- a/libs/canvas/poly_item.cc
+++ b/libs/canvas/poly_item.cc
@@ -109,8 +109,8 @@ PolyItem::dump (ostream& o) const
{
Item::dump (o);
- o << _canvas->indent() << _points.size() << " points" << endl;
+ o << _canvas->indent() << '\t' << _points.size() << " points" << endl;
for (Points::const_iterator i = _points.begin(); i != _points.end(); ++i) {
- o << i->x << ", " << i->y << endl;
+ o << _canvas->indent() << "\t\t" << i->x << ", " << i->y << endl;
}
}