summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/note_fixer.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/note_fixer.h')
-rw-r--r--libs/ardour/ardour/note_fixer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/note_fixer.h b/libs/ardour/ardour/note_fixer.h
index 34582497d0..320c92bc71 100644
--- a/libs/ardour/ardour/note_fixer.h
+++ b/libs/ardour/ardour/note_fixer.h
@@ -26,7 +26,7 @@
#include "ardour/midi_model.h"
#include "ardour/types.h"
-#include "evoral/Beats.hpp"
+#include "temporal/beats.h"
#include "evoral/Note.hpp"
namespace Evoral { template<typename Time> class EventSink; }
@@ -46,7 +46,7 @@ class TempoMap;
class NoteFixer : public boost::noncopyable
{
public:
- typedef Evoral::Note<Evoral::Beats> Note;
+ typedef Evoral::Note<Temporal::Beats> Note;
~NoteFixer();
@@ -85,7 +85,7 @@ private:
typedef std::list<Event*> Events;
/** Copy a beats event to a samples event with the given time stamp. */
- Event* copy_event(samplepos_t time, const Evoral::Event<Evoral::Beats>& ev);
+ Event* copy_event(samplepos_t time, const Evoral::Event<Temporal::Beats>& ev);
/** Return true iff `note` is active at `pos`. */
bool note_is_active(const BeatsSamplesConverter& converter,