summaryrefslogtreecommitdiff
path: root/gtk2_ardour/diamond.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/diamond.cc')
-rw-r--r--gtk2_ardour/diamond.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/diamond.cc b/gtk2_ardour/diamond.cc
index 04fdd509c2..7d3e66357d 100644
--- a/gtk2_ardour/diamond.cc
+++ b/gtk2_ardour/diamond.cc
@@ -32,10 +32,10 @@ void
Diamond::set_height(double height)
{
Points points;
- points.push_back(Point(0, height*2.0));
- points.push_back(Point(height, height));
- points.push_back(Point(0, 0));
- points.push_back(Point(-height, height));
+ points.push_back(Art::Point(0, height*2.0));
+ points.push_back(Art::Point(height, height));
+ points.push_back(Art::Point(0, 0));
+ points.push_back(Art::Point(-height, height));
property_points() = points;
}