| 145 | } |
| 146 | |
| 147 | CString CFolderDialog::ShortName(const CString& strName) |
| 148 | { |
| 149 | CString strShort; |
| 150 | if (strName.GetLength() <= 35) |
| 151 | strShort = strName; |
| 152 | else |
| 153 | strShort = strName.Left(35) + _T("..."); |
| 154 | |
| 155 | return strShort; |
| 156 | } |
| 157 | |
| 158 | void CFolderDialog::OnInitDialog() |
| 159 | { |
nothing calls this directly
no outgoing calls
no test coverage detected