Index: src/ch/StatusDlg.cpp =================================================================== diff -u -N -r3f72015a9db19bd1b0a5e20e0f1aa0ec00bda529 -r69b48f0b4d7fad78f95854e95fca166014311474 --- src/ch/StatusDlg.cpp (.../StatusDlg.cpp) (revision 3f72015a9db19bd1b0a5e20e0f1aa0ec00bda529) +++ src/ch/StatusDlg.cpp (.../StatusDlg.cpp) (revision 69b48f0b4d7fad78f95854e95fca166014311474) @@ -258,7 +258,7 @@ // insert 'file' subitem lvi.iSubItem=2; - strTemp = (CString)td.m_pathDstPath; + strTemp = td.m_pathDstPath.ToString(); lvi.pszText=strTemp.GetBuffer(0); strTemp.ReleaseBuffer(); lvi.cchTextMax=lstrlen(lvi.pszText); @@ -325,7 +325,7 @@ // refresh only when there are new selected item // if (spTask != m_spLastSelected) { - GetDlgItem(IDC_DESTINATION_STATIC)->SetWindowText(td.m_pathDstPath); + GetDlgItem(IDC_DESTINATION_STATIC)->SetWindowText(td.m_pathDstPath.ToString()); GetDlgItem(IDC_PRIORITY_STATIC)->SetWindowText(GetResManager().LoadString(IDS_PRIORITY0_STRING+PriorityToIndex(td.m_nPriority))); GetDlgItem(IDC_ASSOCIATEDFILES__STATIC)->SetWindowText(td.m_strUniqueName); }