/////////////////////////////////////////////////////////////////////
| 55 | |
| 56 | ////////////////////////////////////////////////////////////////////////// |
| 57 | CString CBaseLibraryItem::GetShortName() |
| 58 | { |
| 59 | CString str = GetName(); |
| 60 | int p = str.Find('.'); |
| 61 | if (p >= 0) |
| 62 | { |
| 63 | return str.Mid(p+1); |
| 64 | } |
| 65 | return str; |
| 66 | } |
| 67 | |
| 68 | ////////////////////////////////////////////////////////////////////////// |
| 69 | void CBaseLibraryItem::SetName( const CString &name ) |
no test coverage detected