From: Sangyoon Jang Date: Thu, 9 Nov 2017 02:23:17 +0000 (+0900) Subject: Change name of OpenRecoveryFileForPath to OpenRecoveryFile X-Git-Tag: accepted/tizen/unified/20171128.150354~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=925d590e1d06697a4d799996df3d7883dca533b8;p=platform%2Fcore%2Fappfw%2Fwgt-backend.git Change name of OpenRecoveryFileForPath to OpenRecoveryFile Requires: - https://review.tizen.org/gerrit/159379 Change-Id: Iabfaf8d4a98271678a8508d318cab3c5013a51f7 Signed-off-by: Sangyoon Jang --- diff --git a/src/wgt/wgt_app_query_interface.cc b/src/wgt/wgt_app_query_interface.cc index 87252a0..c5abeda 100644 --- a/src/wgt/wgt_app_query_interface.cc +++ b/src/wgt/wgt_app_query_interface.cc @@ -41,7 +41,7 @@ const char kTizenManifestLocation[] = "tizen-manifest.xml"; std::string ReadPkgidFromRecovery(const std::string& recovery_path) { std::unique_ptr recovery_file = - ci::recovery::RecoveryFile::OpenRecoveryFileForPath(recovery_path); + ci::recovery::RecoveryFile::OpenRecoveryFile(recovery_path); recovery_file->Detach(); return recovery_file->pkgid(); }