mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 12:07:08 -06:00
4.31
This commit is contained in:
committed by
Kornel Lesiński
parent
e18587ba51
commit
acac987575
@@ -111,12 +111,15 @@ HRESULT DecompressArchives(
|
||||
archivePathsFull.Delete(index);
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef _NO_CRYPTO
|
||||
UString password;
|
||||
RINOK(openCallback->GetPasswordIfAny(password));
|
||||
if (!password.IsEmpty())
|
||||
{
|
||||
RINOK(extractCallback->SetPassword(password));
|
||||
}
|
||||
#endif
|
||||
|
||||
options.DefaultItemName = archiveLink.GetDefaultItemName();
|
||||
RINOK(DecompressArchive(
|
||||
|
||||
@@ -119,12 +119,21 @@ bool CSystemPage::OnInit()
|
||||
return CPropertyPage::OnInit();
|
||||
}
|
||||
|
||||
STDAPI DllRegisterServer(void);
|
||||
STDAPI DllUnregisterServer(void);
|
||||
|
||||
LONG CSystemPage::OnApply()
|
||||
{
|
||||
if (IsButtonCheckedBool(IDC_SYSTEM_INTEGRATE_TO_CONTEXT_MENU))
|
||||
{
|
||||
DllRegisterServer();
|
||||
NZipRootRegistry::AddContextMenuHandler();
|
||||
}
|
||||
else
|
||||
{
|
||||
DllUnregisterServer();
|
||||
NZipRootRegistry::DeleteContextMenuHandler();
|
||||
}
|
||||
SaveCascadedMenu(IsButtonCheckedBool(IDC_SYSTEM_CASCADED_MENU));
|
||||
|
||||
UINT32 flags = 0;
|
||||
|
||||
@@ -8,7 +8,9 @@
|
||||
#include "Common/StdInStream.h"
|
||||
#include "Common/StringConvert.h"
|
||||
|
||||
#ifndef _NO_CRYPTO
|
||||
#include "../../FileManager/Resource/PasswordDialog/PasswordDialog.h"
|
||||
#endif
|
||||
|
||||
HRESULT COpenCallbackGUI::CheckBreak()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user