From: Ilho Kim Date: Thu, 16 May 2019 03:00:05 +0000 (+0900) Subject: Standardize use of STEP_NAME() X-Git-Tag: submit/tizen/20190531.072406~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f17d5cdbd957239ba761582fc20cb8c80a7c7c44;p=platform%2Fcore%2Fappfw%2Ftpk-backend.git Standardize use of STEP_NAME() In case class name is StepExampleClass, Pass "ExampleClass" to STEP_NAME() Change-Id: Id2bcb7c21b704a949613896527731c68ef8743ac Signed-off-by: Ilho Kim --- diff --git a/src/tpk/step/filesystem/step_create_symbolic_link.h b/src/tpk/step/filesystem/step_create_symbolic_link.h index 5a7f57c..e27eea2 100644 --- a/src/tpk/step/filesystem/step_create_symbolic_link.h +++ b/src/tpk/step/filesystem/step_create_symbolic_link.h @@ -18,7 +18,7 @@ class StepCreateSymbolicLink : public common_installer::Step { Status undo() override { return Status::OK; } Status precheck() override; - STEP_NAME(SymbolicLink) + STEP_NAME(CreateSymbolicLink) }; } // namespace filesystem diff --git a/src/tpk/step/pkgmgr/step_manifest_adjustment.h b/src/tpk/step/pkgmgr/step_manifest_adjustment.h index 6d3986a..12cbd00 100644 --- a/src/tpk/step/pkgmgr/step_manifest_adjustment.h +++ b/src/tpk/step/pkgmgr/step_manifest_adjustment.h @@ -26,7 +26,7 @@ class StepManifestAdjustment : public common_installer::Step { private: boost::filesystem::path xml_path_; - STEP_NAME(StepManifestAdjustment) + STEP_NAME(ManifestAdjustment) }; } // namespace pkgmgr