summaryrefslogtreecommitdiff
path: root/gtk2_ardour/note_base.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-24 12:03:54 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-24 12:03:54 -0400
commit7db12f6b128eef0d63dd6a8eda3d04f4dab1fc79 (patch)
tree388aecd96220df899626709aeb8c7dbc37fd9088 /gtk2_ardour/note_base.h
parent9283bee867ce788465f3e48ed889cd324e098e64 (diff)
convert codebase to use Temporal for various time types
Diffstat (limited to 'gtk2_ardour/note_base.h')
-rw-r--r--gtk2_ardour/note_base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/note_base.h b/gtk2_ardour/note_base.h
index b7be36ada8..ebc00cbfa4 100644
--- a/gtk2_ardour/note_base.h
+++ b/gtk2_ardour/note_base.h
@@ -22,6 +22,7 @@
#include <boost/shared_ptr.hpp>
+#include "temporal/beats.h"
#include "canvas/types.h"
#include "rgb_macros.h"
@@ -53,7 +54,7 @@ namespace ArdourCanvas {
class NoteBase : public sigc::trackable
{
public:
- typedef Evoral::Note<Evoral::Beats> NoteType;
+ typedef Evoral::Note<Temporal::Beats> NoteType;
NoteBase (MidiRegionView& region, bool, const boost::shared_ptr<NoteType> note = boost::shared_ptr<NoteType>());
virtual ~NoteBase ();