fixed internal types.

This commit is contained in:
Jeff Hutchinson 2021-04-12 21:42:18 -04:00
parent 93500b6ac4
commit a2dea07d8b
2 changed files with 7 additions and 0 deletions

View file

@ -468,6 +468,7 @@ char *typeValueEmpty = "";
Dictionary::Entry::Entry(StringTableEntry in_name) Dictionary::Entry::Entry(StringTableEntry in_name)
{ {
name = in_name; name = in_name;
type = TypeInternalString;
notify = NULL; notify = NULL;
nextEntry = NULL; nextEntry = NULL;
mUsage = NULL; mUsage = NULL;

View file

@ -344,11 +344,17 @@ public:
Entry() { Entry() {
name = NULL; name = NULL;
type = TypeInternalString;
notify = NULL; notify = NULL;
nextEntry = NULL; nextEntry = NULL;
mUsage = NULL; mUsage = NULL;
mIsConstant = false; mIsConstant = false;
mNext = NULL; mNext = NULL;
ival = 0;
fval = 0;
sval = typeValueEmpty;
bufferLen = 0;
} }
Entry(StringTableEntry name); Entry(StringTableEntry name);