mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-05 13:24:51 -04:00
MidiAlsaSeq: fixed typo which made output ports not work at all
As of94d13e84ca, MidiClients::writablePorts() was not overloaded properly anymore and thus no output ports appeared anymore. (cherry picked from commitfdc065b8b8)
This commit is contained in:
@@ -75,10 +75,10 @@ public:
|
||||
// list seq-ports from ALSA
|
||||
virtual QStringList readablePorts( void ) const
|
||||
{
|
||||
return( m_readablePorts );
|
||||
return m_readablePorts;
|
||||
}
|
||||
|
||||
virtual QStringList writeblePorts( void ) const
|
||||
virtual QStringList writablePorts( void ) const
|
||||
{
|
||||
return m_writablePorts;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user