MidiAlsaSeq: fixed typo which made output ports not work at all

As of 94d13e84ca, MidiClients::writablePorts()
was not overloaded properly anymore and thus no output ports appeared anymore.
This commit is contained in:
Tobias Doerffel
2009-03-14 19:06:43 +01:00
parent bd9be061a0
commit fdc065b8b8

View File

@@ -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;
}