| 605 | } |
| 606 | |
| 607 | void Dictionary::setVariable(StringTableEntry name, const char *value) |
| 608 | { |
| 609 | Entry *ent = add(name); |
| 610 | if (!value) |
| 611 | value = ""; |
| 612 | ent->setStringValue(value); |
| 613 | } |
| 614 | |
| 615 | Dictionary::Entry* Dictionary::addVariable(const char *name, |
| 616 | S32 type, |
no test coverage detected