From: Lars Op den Kamp Date: Wed, 7 Dec 2011 00:30:22 +0000 (+0100) Subject: cosmetics X-Git-Tag: upstream/2.2.0~1^2~44^2~24 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=0e54ee2e232fa018c158f3a6e5eaaae18bf1d05f cosmetics --- diff --git a/src/lib/implementations/SLCommandHandler.cpp b/src/lib/implementations/SLCommandHandler.cpp index fbc6b52..713eebb 100644 --- a/src/lib/implementations/SLCommandHandler.cpp +++ b/src/lib/implementations/SLCommandHandler.cpp @@ -119,7 +119,7 @@ void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSou Transmit(response); } -void CSLCommandHandler::TransmitVendorCommand04(const cec_logical_address iSource, const cec_logical_address iDestination) +void CSLCommandHandler::TransmitVendorCommand05(const cec_logical_address iSource, const cec_logical_address iDestination) { m_bSLEnabled = true; cec_command response; @@ -147,7 +147,7 @@ void CSLCommandHandler::HandleVendorCommandSLConnect(const cec_command &command) m_bSLEnabled = true; m_processor->m_busDevices[command.destination]->TransmitActiveSource(); m_processor->SetStreamPath(m_processor->m_busDevices[command.destination]->GetPhysicalAddress(false)); - TransmitVendorCommand04(command.destination, command.initiator); + TransmitVendorCommand05(command.destination, command.initiator); TransmitDeckStatus(command.initiator); } diff --git a/src/lib/implementations/SLCommandHandler.h b/src/lib/implementations/SLCommandHandler.h index 7d43c9a..3a5a779 100644 --- a/src/lib/implementations/SLCommandHandler.h +++ b/src/lib/implementations/SLCommandHandler.h @@ -56,7 +56,7 @@ namespace CEC virtual void HandleVendorCommandPowerOnStatus(const cec_command &command); virtual void TransmitVendorCommand0205(const cec_logical_address iSource, const cec_logical_address iDestination); - virtual void TransmitVendorCommand04(const cec_logical_address iSource, const cec_logical_address iDestination); + virtual void TransmitVendorCommand05(const cec_logical_address iSource, const cec_logical_address iDestination); virtual void TransmitDeckStatus(const cec_logical_address iDestination); virtual bool HandleGiveDeviceVendorId(const cec_command &command); virtual bool HandleVendorCommand(const cec_command &command);