]> git.pld-linux.org Git - packages/ardour.git/blame - ardour-c++.patch
- opt patch is still needed
[packages/ardour.git] / ardour-c++.patch
CommitLineData
197ef251
JB
1--- ardour-2.0.3/gtk2_ardour/automation_selectable.h.orig 2007-05-10 13:30:27.000000000 +0200
2+++ ardour-2.0.3/gtk2_ardour/automation_selectable.h 2007-07-15 00:19:56.345439649 +0200
3@@ -31,17 +31,17 @@ struct AutomationSelectable : public Sel
4 nframes_t end;
5 double low_fract;
6 double high_fract;
7- TimeAxisView& track;
8+ TimeAxisView *track;
9
10 AutomationSelectable (nframes_t s, nframes_t e, double l, double h, TimeAxisView& atv)
11- : start (s), end (e), low_fract (l), high_fract (h), track (atv) {}
12+ : start (s), end (e), low_fract (l), high_fract (h), track (&atv) {}
13
14 bool operator== (const AutomationSelectable& other) {
15 return start == other.start &&
16 end == other.end &&
17 low_fract == other.low_fract &&
18 high_fract == other.high_fract &&
19- &track == &other.track;
20+ track == other.track;
21 }
22 };
23
24--- ardour-2.0.3/gtk2_ardour/automation_time_axis.cc.orig 2007-05-10 13:30:27.000000000 +0200
25+++ ardour-2.0.3/gtk2_ardour/automation_time_axis.cc 2007-07-15 00:33:26.261213756 +0200
26@@ -554,7 +554,7 @@ AutomationTimeAxisView::reset_objects_on
27
28 for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
29
30- if (&(*i).track != this) {
31+ if ((*i).track != this) {
32 continue;
33 }
34
35@@ -585,7 +585,7 @@ AutomationTimeAxisView::cut_copy_clear_o
36
37 for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
38
39- if (&(*i).track != this) {
40+ if ((*i).track != this) {
41 continue;
42 }
43
44--- ardour-2.0.3/gtk2_ardour/automation_line.cc.orig 2007-05-10 13:30:27.000000000 +0200
45+++ ardour-2.0.3/gtk2_ardour/automation_line.cc 2007-07-15 00:36:48.307644484 +0200
46@@ -1102,7 +1102,7 @@ AutomationLine::set_selected_points (Poi
47
48 for (PointSelection::iterator r = points.begin(); r != points.end(); ++r) {
49
50- if (&(*r).track != &trackview) {
51+ if ((*r).track != &trackview) {
52 continue;
53 }
54
This page took 0.056612 seconds and 4 git commands to generate.