summaryrefslogtreecommitdiff
path: root/libs/ardour/test/framepos_plus_beats_test.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-02-13 04:16:06 +1100
committernick_m <mainsbridge@gmail.com>2016-05-27 23:38:10 +1000
commit36f04367dff567a24f94b8686b0625d9b51210ef (patch)
tree3f523deca14b2e9d9209d8810c4b81cd1904c631 /libs/ardour/test/framepos_plus_beats_test.cc
parentbdef9b2466a3658a564d65ab0be4c7471159a104 (diff)
Tempo ramps - fix crazy compilable namespace thinko
Diffstat (limited to 'libs/ardour/test/framepos_plus_beats_test.cc')
-rw-r--r--libs/ardour/test/framepos_plus_beats_test.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/test/framepos_plus_beats_test.cc b/libs/ardour/test/framepos_plus_beats_test.cc
index ab52861f50..a2cc616c58 100644
--- a/libs/ardour/test/framepos_plus_beats_test.cc
+++ b/libs/ardour/test/framepos_plus_beats_test.cc
@@ -22,7 +22,7 @@ FrameposPlusBeatsTest::singleTempoTest ()
Meter meter (4, 4);
map.add_meter (meter, 0.0, BBT_Time (1, 1, 0));
- map.add_tempo (tempo, 0.0, TempoSection::Type::Constant);
+ map.add_tempo (tempo, 0.0, TempoSection::Constant);
/* Add 1 beat to beat 3 of the first bar */
framepos_t r = map.framepos_plus_beats (frames_per_beat * 2, Evoral::Beats(1));
@@ -62,9 +62,9 @@ FrameposPlusBeatsTest::doubleTempoTest ()
*/
Tempo tempoA (120);
- map.add_tempo (tempoA, 0.0, TempoSection::Type::Constant);
+ map.add_tempo (tempoA, 0.0, TempoSection::Constant);
Tempo tempoB (240);
- map.add_tempo (tempoB, 12.0, TempoSection::Type::Constant);
+ map.add_tempo (tempoB, 12.0, TempoSection::Constant);
/* Now some tests */
@@ -114,9 +114,9 @@ FrameposPlusBeatsTest::doubleTempoWithMeterTest ()
*/
Tempo tempoA (120);
- map.add_tempo (tempoA, 0.0, TempoSection::Type::Constant);
+ map.add_tempo (tempoA, 0.0, TempoSection::Constant);
Tempo tempoB (240);
- map.add_tempo (tempoB, 12.0, TempoSection::Type::Constant);
+ map.add_tempo (tempoB, 12.0, TempoSection::Constant);
Meter meterB (3, 4);
map.add_meter (meterB, 12.0, BBT_Time (4, 1, 0));