cec: include the ack timeout in the cec_command struct
[deb_libcec.git] / src / lib / LibCEC.cpp
index ab252906686d020538e98649a29561e67f7316ae..bf5de8a9e969b0c06730290c022ff4bd39f63fe0 100644 (file)
@@ -159,9 +159,9 @@ bool CLibCEC::GetNextCommand(cec_command *command)
   return m_commandBuffer.Pop(*command);
 }
 
-bool CLibCEC::Transmit(const cec_command &data, bool bWaitForAck /* = true */)
+bool CLibCEC::Transmit(const cec_command &data)
 {
-  return m_cec ? m_cec->Transmit(data, bWaitForAck) : false;
+  return m_cec ? m_cec->Transmit(data) : false;
 }
 
 bool CLibCEC::SetLogicalAddress(cec_logical_address iLogicalAddress)