summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-01-19 20:55:38 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2017-01-19 20:55:38 +0100
commit5d7b6fdd627af94906aaf2fd5405bb33312f96f8 (patch)
tree32999379f68601e6da95db0dffa383aab3d49657 /libs/surfaces
parent4fa4b9a1359131d861470376a34750211cf1a1ae (diff)
ancillary change related to removal of boost::optional<Rect>
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/push2/knob.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/push2/knob.cc b/libs/surfaces/push2/knob.cc
index 0b0e893858..fe745405b5 100644
--- a/libs/surfaces/push2/knob.cc
+++ b/libs/surfaces/push2/knob.cc
@@ -240,7 +240,7 @@ Push2Knob::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) con
Push2Knob::compute_bounding_box () const
{
if (!_canvas || _r == 0) {
- _bounding_box = boost::optional<Rect> ();
+ _bounding_box = Rect ();
_bounding_box_dirty = false;
return;
}