mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 22:11:35 -06:00
fixes delete after extract
This commit is contained in:
9
.gitignore
vendored
9
.gitignore
vendored
@@ -1,2 +1,11 @@
|
|||||||
*.o
|
*.o
|
||||||
out
|
out
|
||||||
|
7zAll/x64/
|
||||||
|
*.pdb
|
||||||
|
*.tlog
|
||||||
|
*.obj
|
||||||
|
*.user
|
||||||
|
*.log
|
||||||
|
*.pch
|
||||||
|
*.idb
|
||||||
|
x64/
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
#include "StdAfx.h"
|
#include "StdAfx.h"
|
||||||
|
|
||||||
#include "../../../Windows/DLL.h"
|
#include "../../../Windows/DLL.h"
|
||||||
|
#include "../Common/LoadCodecs.h"
|
||||||
#include "Agent.h"
|
#include "Agent.h"
|
||||||
|
|
||||||
void CArchiveFolderManager::LoadFormats()
|
void CArchiveFolderManager::LoadFormats()
|
||||||
|
|||||||
@@ -35,11 +35,11 @@ static const UInt32 kLangIDs[] =
|
|||||||
CSysString CModifiedExtInfo::GetString() const
|
CSysString CModifiedExtInfo::GetString() const
|
||||||
{
|
{
|
||||||
if (State == kExtState_7Zip)
|
if (State == kExtState_7Zip)
|
||||||
return TEXT("7-Zip");
|
return AString("7-Zip");
|
||||||
if (State == kExtState_Clear)
|
if (State == kExtState_Clear)
|
||||||
return TEXT("");
|
return AString("");
|
||||||
if (Other7Zip)
|
if (Other7Zip)
|
||||||
return TEXT("[7-Zip]");
|
return AString("[7-Zip]");
|
||||||
return ProgramKey;
|
return ProgramKey;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ COMMON_OBJS = \
|
|||||||
$O\StringToInt.obj \
|
$O\StringToInt.obj \
|
||||||
$O\UTFConvert.obj \
|
$O\UTFConvert.obj \
|
||||||
$O\Wildcard.obj \
|
$O\Wildcard.obj \
|
||||||
|
$O\LoadCodecs.obj \
|
||||||
|
|
||||||
WIN_OBJS = $(WIN_OBJS) \
|
WIN_OBJS = $(WIN_OBJS) \
|
||||||
$O\Clipboard.obj \
|
$O\Clipboard.obj \
|
||||||
|
|||||||
Reference in New Issue
Block a user