[Device] capi-system-info KEY value is chanaged
authorLee Siwoo <siwoo0.lee@samsung.com>
Thu, 23 Aug 2012 08:08:22 +0000 (17:08 +0900)
committerKisub Song <kisubs.song@samsung.com>
Thu, 23 Aug 2012 10:03:20 +0000 (19:03 +0900)
[Title] capi-system-info KEY value is chanaged
[Issue#] N/A
[Solution] chanage code

Change-Id: Ic12dae5974eb1656aea755daa614d9e32ec0a31f

src/platform/Tizen/Device/Device.cpp

index a0d77aa..2be29c7 100755 (executable)
@@ -206,12 +206,12 @@ DeviceCapabilitiesPropertiesPtr Device::get()
         deviceCapabilities->duid = duid;
     }
 
-    if (system_info_get_value_bool(SYSTEM_INFO_KEY_SPEECH_RECOGNITION_SUPPROTED, &speechRecognition) == SYSTEM_INFO_ERROR_NONE) {
+    if (system_info_get_value_bool(SYSTEM_INFO_KEY_SPEECH_RECOGNITION_SUPPORTED, &speechRecognition) == SYSTEM_INFO_ERROR_NONE) {
         LogDebug("speechRecognition : " << speechRecognition);
         deviceCapabilities->speechRecognition = speechRecognition;
     }
 
-    if (system_info_get_value_bool(SYSTEM_INFO_KEY_BAROMETER_SENSOR_SUPPROTED, &sensorBarometer) == SYSTEM_INFO_ERROR_NONE) {
+    if (system_info_get_value_bool(SYSTEM_INFO_KEY_BAROMETER_SENSOR_SUPPORTED, &sensorBarometer) == SYSTEM_INFO_ERROR_NONE) {
         LogDebug("sensorBarometer : " << sensorBarometer);
         deviceCapabilities->sensorBarometer = sensorBarometer;
     }