Remove extraneous inclusions of const.h

This commit is contained in:
Jonathan Moore Liles 2008-08-04 00:03:20 -05:00
parent feafd916db
commit 174ca34382
23 changed files with 0 additions and 25 deletions

View File

@ -123,5 +123,4 @@ Annotation_Region::handle ( int m )
}
return r;
#include "const.h"
}

View File

@ -282,5 +282,4 @@ Audio_Sequence::handle ( int m )
default:
return Sequence::handle( m );
}
#include "const.h"
}

View File

@ -115,5 +115,4 @@ Control_Point::handle ( int m )
}
return r;
#include "const.h"
}

View File

@ -343,5 +343,4 @@ Control_Sequence::handle ( int m )
default:
return 0;
}
#include "const.h"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -102,5 +102,4 @@ Control_Sequence::process ( nframes_t nframes )
}
else
return nframes;
#include "const.h"
}

View File

@ -235,5 +235,4 @@ Disk_Stream::buffer_percent ( void )
sem_getvalue( &_blocks, &n );
return 100 - (n * 100 / _total_blocks);
#include "const.h"
}

View File

@ -317,5 +317,4 @@ Engine::request_locate ( nframes_t frame )
{
if ( timeline )
timeline->seek( frame );
#include "const.h"
}

View File

@ -139,5 +139,4 @@ void
Port::silence ( nframes_t nframes )
{
memset( buffer( nframes ), 0, nframes * sizeof( sample_t ) );
#include "const.h"
}

View File

@ -225,5 +225,4 @@ Timeline::total_capture_xruns ( void )
}
return r;
#include "const.h"
}

View File

@ -254,5 +254,4 @@ Track::finalize ( Capture *c, nframes_t frame )
c->audio_file->finalize();
delete c->audio_file;
#include "const.h"
}

View File

@ -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"
}

View File

@ -130,5 +130,4 @@ Sequence_Point::draw ( void )
// Sequence_Widget::draw();
draw_label( _label, align() );
#include "const.h"
}

View File

@ -248,5 +248,4 @@ Sequence_Region::draw_box ( void )
void
Sequence_Region::draw ( void )
{
#include "const.h"
}

View File

@ -171,5 +171,4 @@ Tempo_Point::edit ( float *tempo )
Tempo_Point_Editor ti( tempo );
return ti.sucess();
#include "const.h"
}

View File

@ -56,6 +56,4 @@ Tempo_Sequence::handle ( int m )
return 0;
}
#include "const.h"
}

View File

@ -199,5 +199,4 @@ Time_Point::edit ( time_sig *sig )
Time_Point_Editor ti( sig );
return ti.sucess();
#include "const.h"
}

View File

@ -56,6 +56,4 @@ Time_Sequence::handle ( int m )
return 0;
}
#include "const.h"
}

View File

@ -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"
}

View File

@ -805,5 +805,4 @@ Track::handle ( int m )
}
return 0;
#include "const.h"
}

View File

@ -183,5 +183,4 @@ Transport::toggle ( void )
stop();
else
start();
#include "const.h"
}

View File

@ -117,5 +117,4 @@ Waveform::draw ( int X, int Y, int W, int H,
fl_line_style( FL_SOLID, 0 );
}
#include "const.h"
}