| 52 | } |
| 53 | |
| 54 | bool OnButtonClick(EventCmd *pEvt) |
| 55 | { |
| 56 | SButton *pBtn = sobj_cast<SButton>(pEvt->sender); |
| 57 | int iItem = pBtn->GetRoot()->GetUserData(); |
| 58 | SMessageBox(NULL, SStringT().Format(_T("button of %d item was clicked"), iItem), _T("haha"), MB_OK); |
| 59 | return true; |
| 60 | } |
| 61 | }; |
| 62 | |
| 63 |
nothing calls this directly
no test coverage detected