MidiWinMM: fixed typo that caused writablePorts() not being overloaded

The MidiClient::writablePorts() method was not overloaded properly in
MidiWinMM implementation due to a typo. This should fix list of output
devices being empty on win32.
This commit is contained in:
Tobias Doerffel
2009-08-14 13:05:26 +02:00
parent bfe90a8ade
commit 40c56de898

View File

@@ -71,7 +71,7 @@ public:
return m_inputDevices.values();
}
virtual QStringList writeblePorts() const
virtual QStringList writablePorts() const
{
return m_outputDevices.values();
}