Index: src/ch/CrashDlg.cpp =================================================================== diff -u -r27c0d76ec85a30292d8c474a1f4f969a9a32c406 -rd2b121c78f510b5384b8ef0ca80afbfd7f77fef7 --- src/ch/CrashDlg.cpp (.../CrashDlg.cpp) (revision 27c0d76ec85a30292d8c474a1f4f969a9a32c406) +++ src/ch/CrashDlg.cpp (.../CrashDlg.cpp) (revision d2b121c78f510b5384b8ef0ca80afbfd7f77fef7) @@ -1,10 +1,28 @@ +/*************************************************************************** +* Copyright (C) 2001-2008 by J�zef Starosczyk * +* ixen@copyhandler.com * +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU Library General Public License * +* (version 2) as published by the Free Software Foundation; * +* * +* This program is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU General Public License for more details. * +* * +* You should have received a copy of the GNU Library General Public * +* License along with this program; if not, write to the * +* Free Software Foundation, Inc., * +* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * +***************************************************************************/ // CrashDlg.cpp : implementation file // #include "stdafx.h" #include "ch.h" #include "CrashDlg.h" -#include "version.h" +#include "../common/version.h" #define IDS_CRASH_TITLE _T("Application crashed") #define IDS_STATIC_INFO _T("Copy Handler encountered an internal problem and will be closed.\n\nIf you want to help correct this problem in the future releases of program you can send the crash information to the author of this program (e-mail it to ixen@copyhandler.com).") @@ -15,7 +33,7 @@ // CCrashDlg dialog -IMPLEMENT_DYNAMIC(CCrashDlg, CHLanguageDialog) +IMPLEMENT_DYNAMIC(CCrashDlg,ictranslate::CLanguageDialog) CCrashDlg::CCrashDlg(bool bResult, PCTSTR pszFilename, CWnd* pParent /*=NULL*/) : CDialog(CCrashDlg::IDD, pParent), @@ -53,7 +71,7 @@ SetWindowText(IDS_CRASH_TITLE); m_ctlInfo.SetWindowText(IDS_STATIC_INFO); m_ctlVersionInfo.SetWindowText(IDS_VERSIONINFO_STATIC); - m_ctlVersion.SetWindowText(PRODUCT_FULL_VERSION); + m_ctlVersion.SetWindowText(PRODUCT_FULL_VERSION_T); m_ctlLocationInfo.SetWindowText(IDS_LOCATIONINFO_STATIC); if(m_bResult) m_ctlLocation.SetWindowText(m_strFilename);