mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Console1: fix compiler warnings
For reasons unknown only the console1.h produces -Winconsistent-missing-override warnings, other similar headers e.g. lppro.h do not.
This commit is contained in:
parent
ef0938a16d
commit
5cad7837fa
1 changed files with 10 additions and 10 deletions
|
|
@ -93,10 +93,10 @@ public:
|
||||||
|
|
||||||
void map_p ();
|
void map_p ();
|
||||||
|
|
||||||
int set_active (bool yn);
|
int set_active (bool yn) override;
|
||||||
|
|
||||||
bool has_editor () const { return true; }
|
bool has_editor () const override { return true; }
|
||||||
void* get_gui () const;
|
void* get_gui () const override;
|
||||||
void tear_down_gui () override;
|
void tear_down_gui () override;
|
||||||
|
|
||||||
std::string input_port_name () const override;
|
std::string input_port_name () const override;
|
||||||
|
|
@ -311,20 +311,20 @@ private:
|
||||||
bool strip_recenabled = false;
|
bool strip_recenabled = false;
|
||||||
ARDOUR::MonitorState monitor_state = ARDOUR::MonitorState::MonitoringSilence;
|
ARDOUR::MonitorState monitor_state = ARDOUR::MonitorState::MonitoringSilence;
|
||||||
|
|
||||||
int begin_using_device ();
|
int begin_using_device () override;
|
||||||
int stop_using_device ();
|
int stop_using_device () override;
|
||||||
|
|
||||||
int device_acquire () { return 0; }
|
int device_acquire () override { return 0; }
|
||||||
void device_release () {}
|
void device_release () override {}
|
||||||
|
|
||||||
void connect_session_signals ();
|
void connect_session_signals () override;
|
||||||
void connect_internal_signals ();
|
void connect_internal_signals ();
|
||||||
|
|
||||||
void run_event_loop ();
|
void run_event_loop ();
|
||||||
void stop_event_loop ();
|
void stop_event_loop ();
|
||||||
|
|
||||||
/* MIDI-Message handler - we only have controller messages */
|
/* MIDI-Message handler - we only have controller messages */
|
||||||
void handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes* tb);
|
void handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes* tb) override;
|
||||||
|
|
||||||
void master_monitor_has_changed ();
|
void master_monitor_has_changed ();
|
||||||
|
|
||||||
|
|
@ -411,7 +411,7 @@ private:
|
||||||
|
|
||||||
void map_stripable_state ();
|
void map_stripable_state ();
|
||||||
|
|
||||||
void notify_parameter_changed (std::string);
|
void notify_parameter_changed (std::string) override;
|
||||||
|
|
||||||
/* operations (defined in c1_operations.cc) */
|
/* operations (defined in c1_operations.cc) */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue