summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandr Galiuzov (GutHub) <AGaliuzov@luxoft.com>2016-08-19 10:45:45 +0300
committerGitHub <noreply@github.com>2016-08-19 10:45:45 +0300
commitef2c8c756b794ef798e1bb1dd3ed5b22739c57e1 (patch)
treef08a7e0e0c7169bdc377d8e543380880f0e6bacd
parent77d515216506694c650ee660baa4b9431398d235 (diff)
parent3f73382b5437a191681dc80f58d5f2ce8b14a428 (diff)
downloadsdl_core-ef2c8c756b794ef798e1bb1dd3ed5b22739c57e1.tar.gz
Merge pull request #763 from LuxoftAKutsan/feature/SDL_behaviour_if_VR_not_avaliable
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