waf build works on OS X ; new bindings file and processing system in place for mnemon...
[ardour.git] / gtk2_ardour / diamond.cc
index 04fdd509c23cf3201f79b8dc14549f11b7ca7f4b..7d3e66357d5c7c4bef99044162e79658665476bc 100644 (file)
@@ -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;     
 }