summaryrefslogtreecommitdiff
path: root/libs/canvas/poly_item.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-08 19:48:09 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-08 19:48:09 -0400
commit1267b1d61cbce8688f3d0f1c4c7932de49735e75 (patch)
treed8554757715907dda8464b026e467f5832d426b4 /libs/canvas/poly_item.cc
parent18048747b61017c04399a29fc39d97b652b101e6 (diff)
mo' better debugging of canvas "structure" via Item::dump and derivatives
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;
}
}