fixes delete after extract

This commit is contained in:
glachancecmaisonneuve
2018-11-24 13:31:40 -05:00
parent cc9036aad9
commit 9b07a1847f
4 changed files with 14 additions and 4 deletions

9
.gitignore vendored
View File

@@ -1,2 +1,11 @@
*.o
out
7zAll/x64/
*.pdb
*.tlog
*.obj
*.user
*.log
*.pch
*.idb
x64/

View File

@@ -3,7 +3,7 @@
#include "StdAfx.h"
#include "../../../Windows/DLL.h"
#include "../Common/LoadCodecs.h"
#include "Agent.h"
void CArchiveFolderManager::LoadFormats()

View File

@@ -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;
};

View File

@@ -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 \