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:
@@ -71,7 +71,7 @@ public:
|
||||
return m_inputDevices.values();
|
||||
}
|
||||
|
||||
virtual QStringList writeblePorts() const
|
||||
virtual QStringList writablePorts() const
|
||||
{
|
||||
return m_outputDevices.values();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user