mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
remove unnecessary virtual (no default value involved)
This commit is contained in:
parent
d25a615e20
commit
21074b189a
3 changed files with 3 additions and 6 deletions
|
|
@ -1744,6 +1744,7 @@ private:
|
||||||
|
|
||||||
Temporal::TempoMap::WritableSharedPtr begin_tempo_mapping ();
|
Temporal::TempoMap::WritableSharedPtr begin_tempo_mapping ();
|
||||||
void abort_tempo_mapping ();
|
void abort_tempo_mapping ();
|
||||||
|
void commit_tempo_mapping (Temporal::TempoMap::WritableSharedPtr&);
|
||||||
|
|
||||||
enum MidTempoChanges {
|
enum MidTempoChanges {
|
||||||
TempoChanged = 0x1,
|
TempoChanged = 0x1,
|
||||||
|
|
@ -1755,7 +1756,6 @@ private:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void _commit_tempo_map_edit (Temporal::TempoMap::WritableSharedPtr&, bool with_update = false);
|
void _commit_tempo_map_edit (Temporal::TempoMap::WritableSharedPtr&, bool with_update = false);
|
||||||
void _commit_tempo_mapping (Temporal::TempoMap::WritableSharedPtr&);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class DragManager;
|
friend class DragManager;
|
||||||
|
|
|
||||||
|
|
@ -776,7 +776,7 @@ Editor::abort_tempo_mapping ()
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Editor::_commit_tempo_mapping (TempoMap::WritableSharedPtr& new_map)
|
Editor::commit_tempo_mapping (TempoMap::WritableSharedPtr& new_map)
|
||||||
{
|
{
|
||||||
TempoMap::update (new_map);
|
TempoMap::update (new_map);
|
||||||
abort_tempo_mapping ();
|
abort_tempo_mapping ();
|
||||||
|
|
|
||||||
|
|
@ -522,9 +522,7 @@ public:
|
||||||
|
|
||||||
virtual Temporal::TempoMap::WritableSharedPtr begin_tempo_mapping () = 0;
|
virtual Temporal::TempoMap::WritableSharedPtr begin_tempo_mapping () = 0;
|
||||||
virtual void abort_tempo_mapping () = 0;
|
virtual void abort_tempo_mapping () = 0;
|
||||||
void commit_tempo_mapping (Temporal::TempoMap::WritableSharedPtr& map) {
|
virtual void commit_tempo_mapping (Temporal::TempoMap::WritableSharedPtr& map) = 0;
|
||||||
_commit_tempo_mapping (map);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void access_action (const std::string&, const std::string&) = 0;
|
virtual void access_action (const std::string&, const std::string&) = 0;
|
||||||
virtual void set_toggleaction (const std::string&, const std::string&, bool) = 0;
|
virtual void set_toggleaction (const std::string&, const std::string&, bool) = 0;
|
||||||
|
|
@ -590,7 +588,6 @@ protected:
|
||||||
virtual void suspend_route_redisplay () = 0;
|
virtual void suspend_route_redisplay () = 0;
|
||||||
virtual void resume_route_redisplay () = 0;
|
virtual void resume_route_redisplay () = 0;
|
||||||
virtual void _commit_tempo_map_edit (Temporal::TempoMap::WritableSharedPtr&, bool with_update) = 0;
|
virtual void _commit_tempo_map_edit (Temporal::TempoMap::WritableSharedPtr&, bool with_update) = 0;
|
||||||
virtual void _commit_tempo_mapping (Temporal::TempoMap::WritableSharedPtr&) = 0;
|
|
||||||
|
|
||||||
std::atomic<int> _suspend_route_redisplay_counter;
|
std::atomic<int> _suspend_route_redisplay_counter;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue