| 193 | |
| 194 | template <class TMenuLabel = ui::MenuLabel> |
| 195 | TMenuLabel* createMenuLabel(std::string text) { |
| 196 | TMenuLabel* label = new TMenuLabel; |
| 197 | label->text = text; |
| 198 | return label; |
| 199 | } |
| 200 | |
| 201 | |
| 202 | template <class TMenuItem = ui::MenuItem> |
no outgoing calls
no test coverage detected