X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fjobs%2Fwidget_install%2Fwidget_installer_struct.h;h=0ebe48a3d0602394908187cfaaa32aea643e9292;hb=7318f9524c8f477b402ad3951496bfc2e27095b3;hp=2321a626f5474891a5dbec2b3a77a63cb49a45cc;hpb=5bc50ea1e74c232a201f9ddbc8613c9e90101313;p=framework%2Fweb%2Fwrt-installer.git diff --git a/src/jobs/widget_install/widget_installer_struct.h b/src/jobs/widget_install/widget_installer_struct.h index 2321a62..0ebe48a 100644 --- a/src/jobs/widget_install/widget_installer_struct.h +++ b/src/jobs/widget_install/widget_installer_struct.h @@ -66,13 +66,11 @@ WidgetInstallCallbackBase; struct WidgetInstallationStruct : public WidgetInstallCallbackBase { InstallMode::Type m_installMode; - bool m_quiet; std::shared_ptr pkgmgrInterface; // It must be empty-constructible as a parameter of generic event WidgetInstallationStruct() : - m_installMode(InstallMode::Type::INSTALL_MODE_WGT), - m_quiet(true) + m_installMode(InstallMode::Type::INSTALL_MODE_WGT) {} WidgetInstallationStruct( @@ -80,13 +78,11 @@ struct WidgetInstallationStruct : public WidgetInstallCallbackBase InstallerProgressCallback progress, void *param, InstallMode::Type mode, - bool quiet, std::shared_ptr _pkgmgrInterface ) : WidgetInstallCallbackBase(finished, progress, param), m_installMode(mode), - m_quiet(quiet), pkgmgrInterface(_pkgmgrInterface) {} };