| 85 | } |
| 86 | |
| 87 | BOOL SComboView::FireEvent( EventArgs &evt ) |
| 88 | { |
| 89 | if(evt.idFrom == IDC_DROPDOWN_LIST && m_pDropDownWnd) |
| 90 | { |
| 91 | if(evt.GetID()==EventLVSelChanged::EventID) |
| 92 | { |
| 93 | OnSelChanged(); |
| 94 | return TRUE; |
| 95 | } |
| 96 | if(evt.GetID() == EventCmd::EventID) |
| 97 | { |
| 98 | CloseUp(); |
| 99 | return TRUE; |
| 100 | } |
| 101 | } |
| 102 | return SComboBase::FireEvent(evt); |
| 103 | } |
| 104 | |
| 105 | void SComboView::OnScaleChanged(int nScale) |
| 106 | { |
nothing calls this directly
no test coverage detected