From 2f535e3410475bc5159b0ad063e0fae1e1554980 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 11 Jul 2016 13:42:42 +0200 Subject: [PATCH] fix OSX compilation (flat namespace) reference to 'Rect' is ambiguous ..../CarbonCore.framework/Headers/MacTypes.h defines typedef struct Rect --- gtk2_ardour/note.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/note.cc b/gtk2_ardour/note.cc index 6345432ec3..6e1878afc0 100644 --- a/gtk2_ardour/note.cc +++ b/gtk2_ardour/note.cc @@ -98,7 +98,7 @@ Note::hide () } void -Note::set (Rect rect) +Note::set (ArdourCanvas::Rect rect) { _rectangle->set (rect); }