Remove extraneous inclusions of const.h
This commit is contained in:
parent
feafd916db
commit
174ca34382
|
@ -123,5 +123,4 @@ Annotation_Region::handle ( int m )
|
|||
}
|
||||
|
||||
return r;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -282,5 +282,4 @@ Audio_Sequence::handle ( int m )
|
|||
default:
|
||||
return Sequence::handle( m );
|
||||
}
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -115,5 +115,4 @@ Control_Point::handle ( int m )
|
|||
}
|
||||
|
||||
return r;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -343,5 +343,4 @@ Control_Sequence::handle ( int m )
|
|||
default:
|
||||
return 0;
|
||||
}
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -27,5 +27,4 @@ Audio_File_Dummy::from_file ( const char *filename )
|
|||
Audio_File_Dummy *d = new Audio_File_Dummy;
|
||||
d->_filename = strdup( filename );
|
||||
return d;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -69,5 +69,4 @@ Audio_Sequence::play ( sample_t *buf, nframes_t frame, nframes_t nframes, int ch
|
|||
|
||||
/* FIXME: bogus */
|
||||
return nframes;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -102,5 +102,4 @@ Control_Sequence::process ( nframes_t nframes )
|
|||
}
|
||||
else
|
||||
return nframes;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -235,5 +235,4 @@ Disk_Stream::buffer_percent ( void )
|
|||
sem_getvalue( &_blocks, &n );
|
||||
|
||||
return 100 - (n * 100 / _total_blocks);
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -317,5 +317,4 @@ Engine::request_locate ( nframes_t frame )
|
|||
{
|
||||
if ( timeline )
|
||||
timeline->seek( frame );
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -139,5 +139,4 @@ void
|
|||
Port::silence ( nframes_t nframes )
|
||||
{
|
||||
memset( buffer( nframes ), 0, nframes * sizeof( sample_t ) );
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -225,5 +225,4 @@ Timeline::total_capture_xruns ( void )
|
|||
}
|
||||
|
||||
return r;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -254,5 +254,4 @@ Track::finalize ( Capture *c, nframes_t frame )
|
|||
c->audio_file->finalize();
|
||||
|
||||
delete c->audio_file;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -94,5 +94,4 @@ void
|
|||
buffer_fill_with_silence ( sample_t *buf, nframes_t nframes )
|
||||
{
|
||||
memset( buf, 0, nframes * sizeof( sample_t ) );
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -130,5 +130,4 @@ Sequence_Point::draw ( void )
|
|||
// Sequence_Widget::draw();
|
||||
|
||||
draw_label( _label, align() );
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -248,5 +248,4 @@ Sequence_Region::draw_box ( void )
|
|||
void
|
||||
Sequence_Region::draw ( void )
|
||||
{
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -171,5 +171,4 @@ Tempo_Point::edit ( float *tempo )
|
|||
Tempo_Point_Editor ti( tempo );
|
||||
|
||||
return ti.sucess();
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -56,6 +56,4 @@ Tempo_Sequence::handle ( int m )
|
|||
return 0;
|
||||
|
||||
}
|
||||
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -199,5 +199,4 @@ Time_Point::edit ( time_sig *sig )
|
|||
Time_Point_Editor ti( sig );
|
||||
|
||||
return ti.sucess();
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -56,6 +56,4 @@ Time_Sequence::handle ( int m )
|
|||
return 0;
|
||||
|
||||
}
|
||||
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -1404,5 +1404,4 @@ Timeline::remove_track ( Track *track )
|
|||
|
||||
/* FIXME: why is this necessary? doesn't the above add do DAMAGE_CHILD? */
|
||||
redraw();
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -805,5 +805,4 @@ Track::handle ( int m )
|
|||
}
|
||||
|
||||
return 0;
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -183,5 +183,4 @@ Transport::toggle ( void )
|
|||
stop();
|
||||
else
|
||||
start();
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
|
@ -117,5 +117,4 @@ Waveform::draw ( int X, int Y, int W, int H,
|
|||
|
||||
fl_line_style( FL_SOLID, 0 );
|
||||
}
|
||||
#include "const.h"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue