summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/InputPort.h')
-rw-r--r--src/libs/engine/InputPort.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/InputPort.h b/src/libs/engine/InputPort.h
index f8b79cc8..e6ac55cb 100644
--- a/src/libs/engine/InputPort.h
+++ b/src/libs/engine/InputPort.h
@@ -55,7 +55,7 @@ public:
const List<TypedConnection<T>*>& connections() { return m_connections; }
- void process(samplecount nframes);
+ void process(SampleCount nframes);
bool is_connected() const { return (m_connections.size() > 0); }
bool is_connected_to(const OutputPort<T>* const port) const;
@@ -81,7 +81,7 @@ private:
};
-template class InputPort<sample>;
+template class InputPort<Sample>;
template class InputPort<MidiMessage>;
} // namespace Om