Standardize use of STEP_NAME() 17/206317/2
authorIlho Kim <ilho159.kim@samsung.com>
Thu, 16 May 2019 03:00:05 +0000 (12:00 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Wed, 22 May 2019 05:47:23 +0000 (05:47 +0000)
In case class name is StepExampleClass, Pass "ExampleClass" to STEP_NAME()

Change-Id: Id2bcb7c21b704a949613896527731c68ef8743ac
Signed-off-by: Ilho Kim <ilho159.kim@samsung.com>
src/tpk/step/filesystem/step_create_symbolic_link.h
src/tpk/step/pkgmgr/step_manifest_adjustment.h

index 5a7f57c..e27eea2 100644 (file)
@@ -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
index 6d3986a..12cbd00 100644 (file)
@@ -26,7 +26,7 @@ class StepManifestAdjustment : public common_installer::Step {
  private:
   boost::filesystem::path xml_path_;
 
-  STEP_NAME(StepManifestAdjustment)
+  STEP_NAME(ManifestAdjustment)
 };
 
 }  // namespace pkgmgr