summaryrefslogtreecommitdiff
path: root/libs/canvas/poly_line.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-01-19 20:54:24 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2017-01-19 20:54:54 +0100
commit4fa4b9a1359131d861470376a34750211cf1a1ae (patch)
tree83d0395d654f9225c258456aa9e68b3ab334f945 /libs/canvas/poly_line.cc
parent758f183b99dadd173cc5b0f8b9e76f6cc3e02159 (diff)
remove use of boost::optional to define "undefined" Canvas::Rect, and use Rect::empty instead.
This commit includes Rect::operator bool() which might be a candidate for removal in a future commit, in an attempt to make the meaning clearer
Diffstat (limited to 'libs/canvas/poly_line.cc')
-rw-r--r--libs/canvas/poly_line.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/canvas/poly_line.cc b/libs/canvas/poly_line.cc
index c0e233b38f..99c3377874 100644
--- a/libs/canvas/poly_line.cc
+++ b/libs/canvas/poly_line.cc
@@ -44,10 +44,10 @@ PolyLine::compute_bounding_box () const
{
PolyItem::compute_bounding_box ();
if (_y1 > 0 && _bounding_box) {
- _bounding_box.get().x0 = 0;
- _bounding_box.get().x1 = COORD_MAX;
- if (_y1 > _bounding_box.get().y1) {
- _bounding_box.get().y1 = _y1;
+ _bounding_box.x0 = 0;
+ _bounding_box.x1 = COORD_MAX;
+ if (_y1 > _bounding_box.y1) {
+ _bounding_box.y1 = _y1;
}
}
}