summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kutsan <AKutsan@luxoft.com>2016-08-17 17:01:29 +0300
committerAlexander Kutsan <AKutsan@luxoft.com>2016-08-17 17:01:29 +0300
commit3f73382b5437a191681dc80f58d5f2ce8b14a428 (patch)
treef08a7e0e0c7169bdc377d8e543380880f0e6bacd
parent77d515216506694c650ee660baa4b9431398d235 (diff)
downloadsdl_core-3f73382b5437a191681dc80f58d5f2ce8b14a428.tar.gz
Change variable name due to build error
-rw-r--r--src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc2
-rw-r--r--src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc2
-rw-r--r--src/components/application_manager/src/commands/hmi/vr_is_ready_response.cc4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc b/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
index 681fbde7b3..8ad5d89ba7 100644
--- a/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
+++ b/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
@@ -58,7 +58,7 @@ void UIIsReadyResponse::Run() {
: HmiInterfaces::STATE_NOT_AVAILABLE;
HmiInterfaces& hmi_interfaces = application_manager_.hmi_interfaces();
hmi_interfaces.SetInterfaceState(HmiInterfaces::HMI_INTERFACE_UI,
- inteface_state);
+ interface_state);
}
} // namespace commands
diff --git a/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc b/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
index 1a7e70af70..a78d49af93 100644
--- a/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
+++ b/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
@@ -58,7 +58,7 @@ void VIIsReadyResponse::Run() {
: HmiInterfaces::STATE_NOT_AVAILABLE;
HmiInterfaces& hmi_interfaces = application_manager_.hmi_interfaces();
hmi_interfaces.SetInterfaceState(HmiInterfaces::HMI_INTERFACE_VehicleInfo,
- inteface_state);
+ interface_state);
application_manager_.GetPolicyHandler().OnVIIsReady();
}
diff --git a/src/components/application_manager/src/commands/hmi/vr_is_ready_response.cc b/src/components/application_manager/src/commands/hmi/vr_is_ready_response.cc
index b316c06a54..e30bed4b88 100644
--- a/src/components/application_manager/src/commands/hmi/vr_is_ready_response.cc
+++ b/src/components/application_manager/src/commands/hmi/vr_is_ready_response.cc
@@ -53,12 +53,12 @@ void VRIsReadyResponse::Run() {
HMICapabilities& hmi_capabilities = application_manager_.hmi_capabilities();
hmi_capabilities.set_is_vr_cooperating(is_available);
- const HmiInterfaces::InterfaceState inteface_state =
+ const HmiInterfaces::InterfaceState interface_state =
is_available ? HmiInterfaces::STATE_AVAILABLE
: HmiInterfaces::STATE_NOT_AVAILABLE;
HmiInterfaces& hmi_interfaces = application_manager_.hmi_interfaces();
hmi_interfaces.SetInterfaceState(HmiInterfaces::HMI_INTERFACE_VR,
- inteface_state);
+ interface_state);
}
} // namespace commands