From 604f8078e0c26ee3a1c10b5072df255325d57b24 Mon Sep 17 00:00:00 2001 From: Chulheon Date: Sat, 8 Jun 2013 18:36:48 +0900 Subject: [PATCH] fixed System Value Change-Id: Iec41d22e9d6ca703313ea28f2a175a35aa992dd3 --- src/ui/controls/FUiCtrl_FooterImpl.cpp | 4 ++-- src/ui/controls/FUiCtrl_Keypad.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/controls/FUiCtrl_FooterImpl.cpp b/src/ui/controls/FUiCtrl_FooterImpl.cpp index baa2cc0..c5602dc 100644 --- a/src/ui/controls/FUiCtrl_FooterImpl.cpp +++ b/src/ui/controls/FUiCtrl_FooterImpl.cpp @@ -449,7 +449,7 @@ _FooterImpl::SetBackButton(void) { bool isBackButton = false; - Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.back_key", isBackButton); + Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.keys.back", isBackButton); if(isBackButton) { @@ -1624,7 +1624,7 @@ _FooterImpl::SetMenuButton(void) { bool isMenuButton = false; - Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.option_key", isMenuButton); + Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.keys.option", isMenuButton); if(isMenuButton) { diff --git a/src/ui/controls/FUiCtrl_Keypad.cpp b/src/ui/controls/FUiCtrl_Keypad.cpp index 4065647..3607e1d 100644 --- a/src/ui/controls/FUiCtrl_Keypad.cpp +++ b/src/ui/controls/FUiCtrl_Keypad.cpp @@ -361,7 +361,7 @@ _Keypad::CreateFooter(void) bool isHWBackButtonExist = false; - Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.back_key", isHWBackButtonExist); + Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.keys.back", isHWBackButtonExist); if(!isHWBackButtonExist) { -- 2.7.4