summaryrefslogtreecommitdiff
path: root/gtk2_ardour/diamond.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-08-08 22:36:32 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-08-08 22:36:32 +0000
commitbcc929a5b6760660d307c30da58efdd24c9411fb (patch)
tree2394156d6c1a1f8f120c7d7f7cdd4bc6f98f0c7a /gtk2_ardour/diamond.cc
parent9c6449567d2dc6ce65b99fc1f9e94fc11cccc743 (diff)
waf build works on OS X ; new bindings file and processing system in place for mnemonic-us
git-svn-id: svn://localhost/ardour2/branches/3.0@5498 d708f5d6-7413-0410-9779-e7cbd77b26cf
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;
}