cosmetics
authorLars Op den Kamp <lars@opdenkamp.eu>
Wed, 7 Dec 2011 00:30:22 +0000 (01:30 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Wed, 7 Dec 2011 00:30:22 +0000 (01:30 +0100)
src/lib/implementations/SLCommandHandler.cpp
src/lib/implementations/SLCommandHandler.h

index fbc6b52dcb0d8879234e7bebc77a4a7dca3a9d8e..713eebbde364432419673e8ba6593c987d6ceaf0 100644 (file)
@@ -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);
 }
 
index 7d43c9a6df23d976a6885643fbeb6e6de5d8fee8..3a5a779e5195340898b6b08dd6b0a045f98a7086 100644 (file)
@@ -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);