/////////////////////////////////////////////////////////////////////
| 287 | |
| 288 | ////////////////////////////////////////////////////////////////////////// |
| 289 | void CBaseLibraryDialog::SelectLibrary( const CString &library ) |
| 290 | { |
| 291 | CWaitCursor wait; |
| 292 | if (m_selectedLib != library) |
| 293 | { |
| 294 | SelectItem(0); |
| 295 | m_pLibrary = FindLibrary( library ); |
| 296 | if (m_pLibrary) |
| 297 | { |
| 298 | m_selectedLib = library; |
| 299 | } |
| 300 | else |
| 301 | { |
| 302 | m_selectedLib = ""; |
| 303 | } |
| 304 | ReloadItems(); |
| 305 | } |
| 306 | m_libraryCtrl.SelectString( -1,m_selectedLib ); |
| 307 | } |
| 308 | |
| 309 | ////////////////////////////////////////////////////////////////////////// |
| 310 | void CBaseLibraryDialog::OnChangedLibrary() |
nothing calls this directly
no test coverage detected