| 51 | } |
| 52 | |
| 53 | bool ComboBoxControl::GetText(std::string& text) const |
| 54 | { |
| 55 | int sel= m_cb->GetCurSel(); |
| 56 | if (sel!=CB_ERR) |
| 57 | return false; |
| 58 | |
| 59 | CString dst; |
| 60 | m_cb->GetWindowText(dst); |
| 61 | |
| 62 | if (dst.IsEmpty()) |
| 63 | return false; |
| 64 | |
| 65 | text= std::string(dst.GetBuffer()); |
| 66 | return true; |
| 67 | } |
| 68 |