mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
midisurfaces: make connection_handler() private
This commit is contained in:
parent
27155732ff
commit
4052537e0f
1 changed files with 3 additions and 1 deletions
|
|
@ -116,7 +116,6 @@ class MIDISurface : public ARDOUR::ControlProtocol
|
||||||
|
|
||||||
int _connection_state;
|
int _connection_state;
|
||||||
|
|
||||||
bool connection_handler (std::weak_ptr<ARDOUR::Port>, std::string name1, std::weak_ptr<ARDOUR::Port>, std::string name2, bool yn);
|
|
||||||
PBD::ScopedConnectionList port_connections;
|
PBD::ScopedConnectionList port_connections;
|
||||||
|
|
||||||
virtual int ports_acquire ();
|
virtual int ports_acquire ();
|
||||||
|
|
@ -129,4 +128,7 @@ class MIDISurface : public ARDOUR::ControlProtocol
|
||||||
|
|
||||||
void drop ();
|
void drop ();
|
||||||
void port_setup ();
|
void port_setup ();
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool connection_handler (std::weak_ptr<ARDOUR::Port>, std::string name1, std::weak_ptr<ARDOUR::Port>, std::string name2, bool yn);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue