midisurfaces: make connection_handler() private

This commit is contained in:
Paul Davis 2023-04-21 15:38:24 -06:00
parent 27155732ff
commit 4052537e0f
1 changed files with 3 additions and 1 deletions

View File

@ -116,7 +116,6 @@ class MIDISurface : public ARDOUR::ControlProtocol
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;
virtual int ports_acquire ();
@ -129,4 +128,7 @@ class MIDISurface : public ARDOUR::ControlProtocol
void drop ();
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);
};