| 669 | } |
| 670 | |
| 671 | void Dictionary::setVariable(StringTableEntry name, const char *value) |
| 672 | { |
| 673 | Entry *ent = add(name); |
| 674 | if(!value) |
| 675 | value = ""; |
| 676 | ent->setStringValue(value); |
| 677 | } |
| 678 | |
| 679 | Dictionary::Entry* Dictionary::addVariable( const char *name, |
| 680 | S32 type, |
no test coverage detected