[Issue#] TREL-479
[Problem] Installation progress bar displays abnormal after installing is completed.
[Cause] there is no send signal of 100%.
[Solution] send 100% signal when installation success.
[SCMRequest] N/A
Change-Id: I515d322b2fd8fd7193505b2adb72d2ab9b94903a
AddStep(&TaskSmack::SmackFolderLabelingStep);
AddStep(&TaskSmack::SmackPrivilegeStep);
AddStep(&TaskSmack::SmackTemporaryStep);
+ AddStep(&TaskSmack::SetEndofInstallation);
}
void TaskSmack::SmackFolderLabelingStep()
#endif
}
+void TaskSmack::SetEndofInstallation()
+{
+ m_context.job->UpdateProgress(
+ InstallerContext::INSTALL_END,
+ "End installation");
+}
} //namespace WidgetInstall
} //namespace Jobs
void SmackFolderLabelingStep();
void SmackPrivilegeStep();
void SmackTemporaryStep();
+ void SetEndofInstallation();
public:
TaskSmack(InstallerContext& context);