kilo, mega, giga and byte are not processed

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2606 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-06-02 14:58:51 +00:00
parent 052bbbe8fa
commit 7c03da12b8

View file

@ -450,10 +450,10 @@ void CEXEBuild::FillStringTable(StringTable *table, NLF *nlf/*=0*/) {
table->ucommon.name=add_string_uninst(str(NLF_DEF_NAME),0);
}
#ifdef NSIS_CONFIG_VISIBLE_SUPPORT
table->common.byte=add_string_main(str(NLF_BYTE));
table->common.kilo=add_string_main(str(NLF_KILO));
table->common.mega=add_string_main(str(NLF_MEGA));
table->common.giga=add_string_main(str(NLF_GIGA));
table->common.byte=add_string_main(str(NLF_BYTE),0);
table->common.kilo=add_string_main(str(NLF_KILO),0);
table->common.mega=add_string_main(str(NLF_MEGA),0);
table->common.giga=add_string_main(str(NLF_GIGA),0);
/* not yet needed