summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc
index 6178405808..93e37b95a7 100644
--- a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc
+++ b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/mobile/get_interior_vehicle_data_request.cc
@@ -248,7 +248,7 @@ void GetInteriorVehicleDataRequest::on_event(
GetInteriorVehicleDataRequest::~GetInteriorVehicleDataRequest() {}
void GetInteriorVehicleDataRequest::ProccessSubscription(
- const NsSmartDeviceLink::NsSmartObjects::SmartObject& hmi_response) {
+ const ns_smart_device_link::ns_smart_objects::SmartObject& hmi_response) {
LOG4CXX_AUTO_TRACE(logger_);
const bool is_subscribe_present_in_request =
@@ -267,7 +267,7 @@ void GetInteriorVehicleDataRequest::ProccessSubscription(
application_manager_.application(CommandRequestImpl::connection_key());
const auto extension = RCHelpers::GetRCExtension(*app);
const char* module_type;
- NsSmartDeviceLink::NsSmartObjects::
+ ns_smart_device_link::ns_smart_objects::
EnumConversionHelper<mobile_apis::ModuleType::eType>::EnumToCString(
static_cast<mobile_apis::ModuleType::eType>(
hmi_response[app_mngr::strings::msg_params]
@@ -370,7 +370,7 @@ std::string GetInteriorVehicleDataRequest::ModuleType() {
(*message_)[app_mngr::strings::msg_params][message_params::kModuleType]
.asUInt());
const char* str;
- const bool ok = NsSmartDeviceLink::NsSmartObjects::EnumConversionHelper<
+ const bool ok = ns_smart_device_link::ns_smart_objects::EnumConversionHelper<
mobile_apis::ModuleType::eType>::EnumToCString(module_type, &str);
return ok ? str : "unknown";
}