| 90 | } |
| 91 | |
| 92 | static std::string pack_menu_items_hidden (const std::map<std::string, bool> &kb) |
| 93 | { |
| 94 | std::vector<std::pair<std::string, bool> > v; |
| 95 | v.insert (v.end (), kb.begin (), kb.end ()); |
| 96 | return lay::pack_menu_items_hidden (v); |
| 97 | } |
| 98 | |
| 99 | static std::map<std::string, bool> unpack_menu_items_hidden (const std::string &s) |
| 100 | { |
no test coverage detected