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; return r;
#include "const.h"
} }

View File

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

View File

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

View File

@ -343,5 +343,4 @@ Control_Sequence::handle ( int m )
default: default:
return 0; 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; Audio_File_Dummy *d = new Audio_File_Dummy;
d->_filename = strdup( filename ); d->_filename = strdup( filename );
return d; 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 */ /* FIXME: bogus */
return nframes; return nframes;
#include "const.h"
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -94,5 +94,4 @@ void
buffer_fill_with_silence ( sample_t *buf, nframes_t nframes ) buffer_fill_with_silence ( sample_t *buf, nframes_t nframes )
{ {
memset( buf, 0, nframes * sizeof( sample_t ) ); memset( buf, 0, nframes * sizeof( sample_t ) );
#include "const.h"
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -56,6 +56,4 @@ Time_Sequence::handle ( int m )
return 0; 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? */ /* FIXME: why is this necessary? doesn't the above add do DAMAGE_CHILD? */
redraw(); redraw();
#include "const.h"
} }

View File

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

View File

@ -183,5 +183,4 @@ Transport::toggle ( void )
stop(); stop();
else else
start(); 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 ); fl_line_style( FL_SOLID, 0 );
} }
#include "const.h"
} }