mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
fix sndfile reference in gtk2_ardour/SConscript
git-svn-id: svn://localhost/ardour2/trunk@1043 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
34cd3457a2
commit
80ef7a8415
2 changed files with 4 additions and 4 deletions
|
|
@ -34,7 +34,7 @@ gtkardour.Merge ([
|
||||||
libraries['libgnomecanvas2'],
|
libraries['libgnomecanvas2'],
|
||||||
libraries['libgnomecanvasmm'],
|
libraries['libgnomecanvasmm'],
|
||||||
libraries['sysmidi'],
|
libraries['sysmidi'],
|
||||||
libraries['sndfile'],
|
libraries['sndfile-ardour'],
|
||||||
libraries['flac'],
|
libraries['flac'],
|
||||||
libraries['lrdf'],
|
libraries['lrdf'],
|
||||||
libraries['glibmm2'],
|
libraries['glibmm2'],
|
||||||
|
|
|
||||||
|
|
@ -311,7 +311,7 @@ AutomationLine::set_height (guint32 h)
|
||||||
if (h != _height) {
|
if (h != _height) {
|
||||||
_height = h;
|
_height = h;
|
||||||
|
|
||||||
uint32_t bsz = control_point_box_size();
|
double bsz = control_point_box_size();
|
||||||
|
|
||||||
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
||||||
(*i)->set_size (bsz);
|
(*i)->set_size (bsz);
|
||||||
|
|
@ -671,7 +671,7 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
|
||||||
uint32_t this_ry = 0;
|
uint32_t this_ry = 0;
|
||||||
uint32_t prev_ry = 0;
|
uint32_t prev_ry = 0;
|
||||||
double* slope;
|
double* slope;
|
||||||
double box_size;
|
uint32_t box_size;
|
||||||
uint32_t cpsize;
|
uint32_t cpsize;
|
||||||
|
|
||||||
/* hide all existing points, and the line */
|
/* hide all existing points, and the line */
|
||||||
|
|
@ -701,7 +701,7 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
|
||||||
slope[n] = ydelta/xdelta;
|
slope[n] = ydelta/xdelta;
|
||||||
}
|
}
|
||||||
|
|
||||||
box_size = control_point_box_size ();
|
box_size = (uint32_t) control_point_box_size ();
|
||||||
|
|
||||||
/* read all points and decide which ones to show as control points */
|
/* read all points and decide which ones to show as control points */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue