cec: pass bWait in CCECProcessor::TransmitKeypress() and TransmitKeyRelease()
authorLars Op den Kamp <lars@opdenkamp.eu>
Wed, 21 Dec 2011 22:50:10 +0000 (23:50 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Wed, 21 Dec 2011 23:56:31 +0000 (00:56 +0100)
src/lib/CECProcessor.cpp

index ec0eb554d62a3e23ab1723bc2604f8c93693f59a..5423b4fd63e193cbc9112a3c17dbca8f67e1eb4b 100644 (file)
@@ -1020,12 +1020,12 @@ bool CCECProcessor::SetAckMask(uint16_t iMask)
 
 bool CCECProcessor::TransmitKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
 {
-  return m_busDevices[iDestination]->TransmitKeypress(key);
+  return m_busDevices[iDestination]->TransmitKeypress(key, bWait);
 }
 
 bool CCECProcessor::TransmitKeyRelease(cec_logical_address iDestination, bool bWait /* = true */)
 {
-  return m_busDevices[iDestination]->TransmitKeyRelease();
+  return m_busDevices[iDestination]->TransmitKeyRelease(bWait);
 }
 
 const char *CCECProcessor::ToString(const cec_menu_state state)