| 69 | } |
| 70 | |
| 71 | void RedisInfoUI::OnClick( TNotifyUI& msg ) |
| 72 | { |
| 73 | if (msg.pSender == m_RefreshStart) |
| 74 | { |
| 75 | m_bIsRefresh = true; |
| 76 | DoRefreshWork(); |
| 77 | m_RefreshStop->SetVisible(true); |
| 78 | m_RefreshStart->SetVisible(false); |
| 79 | } |
| 80 | else if (msg.pSender == m_RefreshStop) |
| 81 | { |
| 82 | m_bIsRefresh = false; |
| 83 | m_RefreshStop->SetVisible(false); |
| 84 | m_RefreshStart->SetVisible(true); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | void RedisInfoUI::OnSelectChanged( TNotifyUI &msg ) |
| 89 | { |
nothing calls this directly
no test coverage detected