Browse Source

Remove extraneous inclusions of const.h

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
174ca34382
23 changed files with 0 additions and 25 deletions
  1. +0
    -1
      Timeline/Annotation_Region.C
  2. +0
    -1
      Timeline/Audio_Sequence.C
  3. +0
    -1
      Timeline/Control_Point.C
  4. +0
    -1
      Timeline/Control_Sequence.C
  5. +0
    -1
      Timeline/Engine/Audio_File_Dummy.C
  6. +0
    -1
      Timeline/Engine/Audio_Sequence.C
  7. +0
    -1
      Timeline/Engine/Control_Sequence.C
  8. +0
    -1
      Timeline/Engine/Disk_Stream.C
  9. +0
    -1
      Timeline/Engine/Engine.C
  10. +0
    -1
      Timeline/Engine/Port.C
  11. +0
    -1
      Timeline/Engine/Timeline.C
  12. +0
    -1
      Timeline/Engine/Track.C
  13. +0
    -1
      Timeline/Engine/dsp.C
  14. +0
    -1
      Timeline/Sequence_Point.C
  15. +0
    -1
      Timeline/Sequence_Region.C
  16. +0
    -1
      Timeline/Tempo_Point.C
  17. +0
    -2
      Timeline/Tempo_Sequence.C
  18. +0
    -1
      Timeline/Time_Point.C
  19. +0
    -2
      Timeline/Time_Sequence.C
  20. +0
    -1
      Timeline/Timeline.C
  21. +0
    -1
      Timeline/Track.C
  22. +0
    -1
      Timeline/Transport.C
  23. +0
    -1
      Timeline/Waveform.C

+ 0
- 1
Timeline/Annotation_Region.C View File

@@ -123,5 +123,4 @@ Annotation_Region::handle ( int m )
} }


return r; return r;
#include "const.h"
} }

+ 0
- 1
Timeline/Audio_Sequence.C View File

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

+ 0
- 1
Timeline/Control_Point.C View File

@@ -115,5 +115,4 @@ Control_Point::handle ( int m )
} }


return r; return r;
#include "const.h"
} }

+ 0
- 1
Timeline/Control_Sequence.C View File

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

+ 0
- 1
Timeline/Engine/Audio_File_Dummy.C 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"
} }

+ 0
- 1
Timeline/Engine/Audio_Sequence.C 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"
} }

+ 0
- 1
Timeline/Engine/Control_Sequence.C View File

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

+ 0
- 1
Timeline/Engine/Disk_Stream.C 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"
} }

+ 0
- 1
Timeline/Engine/Engine.C 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"
} }

+ 0
- 1
Timeline/Engine/Port.C 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"
} }

+ 0
- 1
Timeline/Engine/Timeline.C View File

@@ -225,5 +225,4 @@ Timeline::total_capture_xruns ( void )
} }


return r; return r;
#include "const.h"
} }

+ 0
- 1
Timeline/Engine/Track.C 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"
} }

+ 0
- 1
Timeline/Engine/dsp.C 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"
} }

+ 0
- 1
Timeline/Sequence_Point.C 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"
} }

+ 0
- 1
Timeline/Sequence_Region.C View File

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

+ 0
- 1
Timeline/Tempo_Point.C 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"
} }

+ 0
- 2
Timeline/Tempo_Sequence.C View File

@@ -56,6 +56,4 @@ Tempo_Sequence::handle ( int m )
return 0; return 0;


} }

#include "const.h"
} }

+ 0
- 1
Timeline/Time_Point.C 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"
} }

+ 0
- 2
Timeline/Time_Sequence.C View File

@@ -56,6 +56,4 @@ Time_Sequence::handle ( int m )
return 0; return 0;


} }

#include "const.h"
} }

+ 0
- 1
Timeline/Timeline.C 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"
} }

+ 0
- 1
Timeline/Track.C View File

@@ -805,5 +805,4 @@ Track::handle ( int m )
} }


return 0; return 0;
#include "const.h"
} }

+ 0
- 1
Timeline/Transport.C View File

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

+ 0
- 1
Timeline/Waveform.C 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"
} }

Loading…
Cancel
Save