| 686 | } |
| 687 | |
| 688 | std::string CCECClient::GetDeviceMenuLanguage(const cec_logical_address iAddress) |
| 689 | { |
| 690 | CCECBusDevice *device = m_processor->GetDevice(iAddress); |
| 691 | return !!device ? |
| 692 | device->GetMenuLanguage(GetPrimaryLogicalAddress()) : |
| 693 | "??"; |
| 694 | } |
| 695 | |
| 696 | std::string CCECClient::GetDeviceOSDName(const cec_logical_address iAddress) |
| 697 | { |
nothing calls this directly
no test coverage detected