aboutsummaryrefslogtreecommitdiff
path: root/audio/ardour
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2015-01-10 19:03:28 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2015-01-10 19:03:28 +0000
commit5366017ee2686f5899b2faa6ecc3812e35322fc8 (patch)
treeb01888a4b85c82d566e086462146776556c94a1c /audio/ardour
parente28626462241526ed2fa8331e304003050fb41b5 (diff)
downloadports-5366017ee2686f5899b2faa6ecc3812e35322fc8.tar.gz
ports-5366017ee2686f5899b2faa6ecc3812e35322fc8.zip
Notes
Diffstat (limited to 'audio/ardour')
-rw-r--r--audio/ardour/files/patch-gtk2__ardour_automation__selectable.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/ardour/files/patch-gtk2__ardour_automation__selectable.h b/audio/ardour/files/patch-gtk2__ardour_automation__selectable.h
new file mode 100644
index 000000000000..3ea4c8fd6841
--- /dev/null
+++ b/audio/ardour/files/patch-gtk2__ardour_automation__selectable.h
@@ -0,0 +1,11 @@
+--- gtk2_ardour/automation_selectable.h.orig 2009-02-24 12:37:42 UTC
++++ gtk2_ardour/automation_selectable.h
+@@ -36,7 +36,7 @@ struct AutomationSelectable : public Sel
+ AutomationSelectable (nframes_t s, nframes_t e, double l, double h, TimeAxisView& atv)
+ : start (s), end (e), low_fract (l), high_fract (h), track (atv) {}
+
+- bool operator== (const AutomationSelectable& other) {
++ bool operator== (const AutomationSelectable& other) const {
+ return start == other.start &&
+ end == other.end &&
+ low_fract == other.low_fract &&