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.
(cherry picked from commit fdc065b8b8)
This commit is contained in:
Tobias Doerffel
2009-03-14 19:06:43 +01:00
parent c0c729412b
commit 8bfcadfcaf

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