Fixed build break about vconf key
authorSoyoung Kim <sy037.kim@samsung.com>
Thu, 31 Oct 2013 12:52:33 +0000 (21:52 +0900)
committerSoyoung Kim <sy037.kim@samsung.com>
Thu, 31 Oct 2013 12:52:33 +0000 (21:52 +0900)
[Issue#] N/A
[Problem] occured build break
[Cause] vconf key isn't in RSA.
[Solution] modify vconf key to "db/setting/default_memory/download_application"
[Verification] success build.
[SCMRequest] N/A

Change-Id: I431abf2ab1f788e09b9824cf36c0278a20c12c0b

src/jobs/widget_install/task_file_manipulation.cpp

index 21c089b..5e08d28 100644 (file)
@@ -139,9 +139,9 @@ void TaskFileManipulation::StepCheckInstallLocation()
         // vconf_get_int(VCONFKEY_SETAPPL_DEFAULT_MEM_INSTALL_APPLICATIONS_INT)
         // 0 : phone internal memory
         // 1 : SD card
-        if (vconf_get_int(VCONFKEY_SETAPPL_DEFAULT_MEM_INSTALL_APPLICATIONS_INT,
+        if (vconf_get_int("db/setting/default_memory/download_application",
                     &storage)) {
-            _E("vconf_get_int(VCONFKEY_SETAPPL_DEFAULT_MEM_INSTALL_APPLICATIONS_INT) \
+            _E("vconf_get_int(db/setting/default_memory/download_application) \
                     failed.");
         }
         _D("default setting : storage [%d]", storage);