From a77688ee65531ead4e8b7ac96bdc5e65f87f17b5 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 14 Aug 2009 13:05:26 +0200 Subject: [PATCH] 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. (cherry picked from commit 40c56de898e2971584f746e6dfd832c18f811b1f) --- include/MidiWinMM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/MidiWinMM.h b/include/MidiWinMM.h index ae46b8c85..feae6ddc6 100644 --- a/include/MidiWinMM.h +++ b/include/MidiWinMM.h @@ -71,7 +71,7 @@ public: return m_inputDevices.values(); } - virtual QStringList writeblePorts() const + virtual QStringList writablePorts() const { return m_outputDevices.values(); }