Index: src/ch/AboutDlg.cpp =================================================================== diff -u -N -rd2b121c78f510b5384b8ef0ca80afbfd7f77fef7 -r336bb030d9b4bff561ff100563725213ed6703c9 --- src/ch/AboutDlg.cpp (.../AboutDlg.cpp) (revision d2b121c78f510b5384b8ef0ca80afbfd7f77fef7) +++ src/ch/AboutDlg.cpp (.../AboutDlg.cpp) (revision 336bb030d9b4bff561ff100563725213ed6703c9) @@ -54,11 +54,11 @@ return; else { - TCHAR szFull[256]; - _sntprintf(szFull, 256, GetResManager()->LoadString(IDS_ABOUTVERSION_STRING), GetApp()->GetAppVersion()); + CString strText = GetResManager()->LoadString(IDS_ABOUTVERSION_STRING); + strText += GetApp()->GetAppVersion(); pCtl->SetWindowText(GetApp()->GetAppNameVer()); - pCtl2->SetWindowText(szFull); + pCtl2->SetWindowText(strText); pWndCopyright->SetWindowText(_T(COPYRIGHT_INFO)); } }