Index: src/ch/AboutDlg.cpp =================================================================== diff -u -N -r4c272b19c74694c428c943011f279ec064fbd894 -rbec38400c92cba324332df97d699ebbf843651bd --- src/ch/AboutDlg.cpp (.../AboutDlg.cpp) (revision 4c272b19c74694c428c943011f279ec064fbd894) +++ src/ch/AboutDlg.cpp (.../AboutDlg.cpp) (revision bec38400c92cba324332df97d699ebbf843651bd) @@ -23,6 +23,7 @@ #include "resource.h" #include "AboutDlg.h" #include "StaticEx.h" +#include "../common/version.h" #ifdef _DEBUG #define new DEBUG_NEW @@ -50,7 +51,8 @@ { CWnd* pCtl=(CWnd*)GetDlgItem(IDC_PROGRAM_STATICEX); CWnd* pCtl2=(CWnd*)GetDlgItem(IDC_FULLVERSION_STATICEX); - if (!pCtl || !pCtl2) + CWnd* pWndCopyright = GetDlgItem(IDC_COPYRIGHT_STATIC); + if (!pCtl || !pCtl2 || !pWndCopyright) return; else { @@ -59,6 +61,7 @@ pCtl->SetWindowText(GetApp()->GetAppNameVer()); pCtl2->SetWindowText(szFull); + pWndCopyright->SetWindowText(_T(COPYRIGHT_INFO)); } }