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