Index: src/ch/ReplacePathsDlg.cpp =================================================================== diff -u -re701ed2460c2558eeefab55a1f3ed1d2c89a56c0 -rd2b121c78f510b5384b8ef0ca80afbfd7f77fef7 --- src/ch/ReplacePathsDlg.cpp (.../ReplacePathsDlg.cpp) (revision e701ed2460c2558eeefab55a1f3ed1d2c89a56c0) +++ src/ch/ReplacePathsDlg.cpp (.../ReplacePathsDlg.cpp) (revision d2b121c78f510b5384b8ef0ca80afbfd7f77fef7) @@ -1,23 +1,21 @@ -/************************************************************************ - Copy Handler 1.x - program for copying data in Microsoft Windows - systems. - Copyright (C) 2001-2004 Ixen Gerthannes (copyhandler@o2.pl) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - 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 General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*************************************************************************/ - +/*************************************************************************** +* 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. * +***************************************************************************/ #include "stdafx.h" #include "resource.h" #include "ReplacePathsDlg.h" @@ -35,7 +33,7 @@ CReplacePathsDlg::CReplacePathsDlg() - : CHLanguageDialog(CReplacePathsDlg::IDD) + : ictranslate::CLanguageDialog(CReplacePathsDlg::IDD) { //{{AFX_DATA_INIT(CReplacePathsDlg) m_strDest = _T(""); @@ -46,7 +44,7 @@ void CReplacePathsDlg::DoDataExchange(CDataExchange* pDX) { - CHLanguageDialog::DoDataExchange(pDX); + CLanguageDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CReplacePathsDlg) DDX_Control(pDX, IDC_PATHS_LIST, m_ctlPathsList); DDX_Text(pDX, IDC_DESTINATION_EDIT, m_strDest); @@ -55,7 +53,7 @@ } -BEGIN_MESSAGE_MAP(CReplacePathsDlg, CHLanguageDialog) +BEGIN_MESSAGE_MAP(CReplacePathsDlg,ictranslate::CLanguageDialog) //{{AFX_MSG_MAP(CReplacePathsDlg) ON_LBN_SELCHANGE(IDC_PATHS_LIST, OnSelchangePathsList) ON_BN_CLICKED(IDC_BROWSE_BUTTON, OnBrowseButton) @@ -67,7 +65,7 @@ BOOL CReplacePathsDlg::OnInitDialog() { - CHLanguageDialog::OnInitDialog(); + CLanguageDialog::OnInitDialog(); for (int i=0;iGetClipboardDataSize();i++) m_ctlPathsList.AddString(m_pTask->GetClipboardData(i)->GetPath()); @@ -91,7 +89,7 @@ if (m_strSource.IsEmpty()) MsgBox(IDS_SOURCESTRINGMISSING_STRING); else - CHLanguageDialog::OnOK(); + CLanguageDialog::OnOK(); } void CReplacePathsDlg::OnBrowseButton()