| 644 | } |
| 645 | |
| 646 | bool Dictionary::removeVariable(StringTableEntry name) |
| 647 | { |
| 648 | if (Entry *ent = lookup(name)) |
| 649 | { |
| 650 | remove(ent); |
| 651 | return true; |
| 652 | } |
| 653 | return false; |
| 654 | } |
| 655 | |
| 656 | void Dictionary::addVariableNotify(const char *name, const Con::NotifyDelegate &callback) |
| 657 | { |
no test coverage detected