This commit is contained in:
glachancecmaisonneuve
2018-12-22 19:18:21 -05:00
parent c287fb0519
commit f623539c73
6 changed files with 200 additions and 25 deletions

View File

@@ -21,6 +21,8 @@ COMMON_OBJS = \
$O\UTFConvert.obj \
$O\MyVector.obj \
$O\Wildcard.obj \
$O\ResourceString.obj \
WIN_OBJS = \
$O\DLL.obj \
@@ -37,6 +39,7 @@ WIN_OBJS = \
$O\Registry.obj \
$O\System.obj \
$O\TimeUtils.obj \
$O\LoadCodecs.obj \
7ZIP_COMMON_OBJS = \
$O\CreateCoder.obj \

View File

@@ -35,11 +35,11 @@ static const UInt32 kLangIDs[] =
CSysString CModifiedExtInfo::GetString() const
{
if (State == kExtState_7Zip)
return AString("7-Zip");
return UString("7-Zip");
if (State == kExtState_Clear)
return AString("");
return UString("");
if (Other7Zip)
return AString("[7-Zip]");
return UString("[7-Zip]");
return ProgramKey;
};

View File

@@ -23,8 +23,7 @@ COMMON_OBJS = \
$O\StringConvert.obj \
$O\StringToInt.obj \
$O\UTFConvert.obj \
$O\Wildcard.obj \
$O\LoadCodecs.obj \
$O\Wildcard.obj
WIN_OBJS = $(WIN_OBJS) \
$O\Clipboard.obj \