| 601 | *********************************************************************/ |
| 602 | |
| 603 | int CACEdit::AddString(LPCWSTR lpszString) |
| 604 | { |
| 605 | if(m_iType == _COMBOBOX_) |
| 606 | { |
| 607 | return reinterpret_cast<CComboBox*>(this)->AddString(lpszString); |
| 608 | } |
| 609 | return CB_ERR; |
| 610 | } |
| 611 | |
| 612 | /*********************************************************************/ |
| 613 |
no outgoing calls
no test coverage detected