| 135 | } |
| 136 | |
| 137 | void PopupMenuTable::ExtendMenu( PopupMenu &menu, PopupMenuTable &table ) |
| 138 | { |
| 139 | auto &theMenu = dynamic_cast<PopupMenuImpl&>(menu); |
| 140 | |
| 141 | PopupMenuBuilder visitor{ table, theMenu, theMenu.pUserData }; |
| 142 | Registry::VisitWithFunctions(visitor, table.Get(theMenu.pUserData).get(), |
| 143 | table.GetRegistry(), table); |
| 144 | } |
| 145 | |
| 146 | void PopupMenuTable::Append( |
| 147 | const Identifier &stringId, PopupMenuTableEntry::Type type, int id, |
nothing calls this directly
no test coverage detected