SOURCES: ardour-c++.patch (NEW) - started satisfying STL concept c...

qboosh qboosh at pld-linux.org
Sun Jul 15 02:32:58 CEST 2007


Author: qboosh                       Date: Sun Jul 15 00:32:58 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- started satisfying STL concept checks; they fail on glibmm now

---- Files affected:
SOURCES:
   ardour-c++.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/ardour-c++.patch
diff -u /dev/null SOURCES/ardour-c++.patch:1.1
--- /dev/null	Sun Jul 15 02:32:58 2007
+++ SOURCES/ardour-c++.patch	Sun Jul 15 02:32:53 2007
@@ -0,0 +1,54 @@
+--- ardour-2.0.3/gtk2_ardour/automation_selectable.h.orig	2007-05-10 13:30:27.000000000 +0200
++++ ardour-2.0.3/gtk2_ardour/automation_selectable.h	2007-07-15 00:19:56.345439649 +0200
+@@ -31,17 +31,17 @@ struct AutomationSelectable : public Sel
+     nframes_t end;
+     double low_fract;
+     double high_fract;
+-    TimeAxisView& track;
++    TimeAxisView *track;
+ 
+     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) {}
++	    : start (s), end (e), low_fract (l), high_fract (h), track (&atv) {}
+ 
+     bool operator== (const AutomationSelectable& other) {
+ 	    return start == other.start &&
+ 		    end == other.end &&
+ 		    low_fract == other.low_fract &&
+ 		    high_fract == other.high_fract &&
+-		    &track == &other.track;
++		    track == other.track;
+     }
+ };
+ 
+--- ardour-2.0.3/gtk2_ardour/automation_time_axis.cc.orig	2007-05-10 13:30:27.000000000 +0200
++++ ardour-2.0.3/gtk2_ardour/automation_time_axis.cc	2007-07-15 00:33:26.261213756 +0200
+@@ -554,7 +554,7 @@ AutomationTimeAxisView::reset_objects_on
+ 
+ 	for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
+ 
+-		if (&(*i).track != this) {
++		if ((*i).track != this) {
+ 			continue;
+ 		}
+ 		
+@@ -585,7 +585,7 @@ AutomationTimeAxisView::cut_copy_clear_o
+ 
+ 	for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
+ 
+-		if (&(*i).track != this) {
++		if ((*i).track != this) {
+ 			continue;
+ 		}
+ 
+--- ardour-2.0.3/gtk2_ardour/automation_line.cc.orig	2007-05-10 13:30:27.000000000 +0200
++++ ardour-2.0.3/gtk2_ardour/automation_line.cc	2007-07-15 00:36:48.307644484 +0200
+@@ -1102,7 +1102,7 @@ AutomationLine::set_selected_points (Poi
+ 	
+ 	for (PointSelection::iterator r = points.begin(); r != points.end(); ++r) {
+ 		
+-		if (&(*r).track != &trackview) {
++		if ((*r).track != &trackview) {
+ 			continue;
+ 		}
+ 
================================================================


More information about the pld-cvs-commit mailing list