| 46 | } |
| 47 | |
| 48 | Handle_t BaseMenuStyle::GetHandle() |
| 49 | { |
| 50 | /* Don't create the handle until we need it */ |
| 51 | if (m_hHandle == BAD_HANDLE) |
| 52 | { |
| 53 | m_hHandle = g_Menus.CreateStyleHandle(this); |
| 54 | } |
| 55 | |
| 56 | return m_hHandle; |
| 57 | } |
| 58 | |
| 59 | void BaseMenuStyle::AddClientToWatch(int client) |
| 60 | { |
no test coverage detected