Index: src/ch/CustomCopyDlg.cpp
===================================================================
diff -u -N -r6df9b4cff81dedf8c5571a98702b584b061eac09 -rde5a63babb2991c808333230014a4f2e6cc8b7b2
--- src/ch/CustomCopyDlg.cpp	(.../CustomCopyDlg.cpp)	(revision 6df9b4cff81dedf8c5571a98702b584b061eac09)
+++ src/ch/CustomCopyDlg.cpp	(.../CustomCopyDlg.cpp)	(revision de5a63babb2991c808333230014a4f2e6cc8b7b2)
@@ -591,7 +591,7 @@
 void CCustomCopyDlg::OnAddfilterButton() 
 {
 	CFilterDlg dlg;
-	CString strData;
+	chcore::TString strData;
 
 	CFiltersArray afFilters = GetTaskPropValue<eTO_Filters>(m_tTaskDefinition.GetConfiguration());
 	for (size_t i = 0; i < afFilters.GetSize(); i++)
@@ -634,7 +634,7 @@
 	
 	if (rFilter.m_bUseMask)
 	{
-		CString strData;
+		chcore::TString strData;
 		rFilter.GetCombinedMask(strData);
 		_tcscpy(szLoaded, strData);
 	}
@@ -650,7 +650,7 @@
 	
 	if (rFilter.m_bUseExcludeMask)
 	{
-		CString strData;
+		chcore::TString strData;
 		rFilter.GetCombinedExcludeMask(strData);
 		_tcscpy(szLoaded, strData);
 	}
@@ -833,7 +833,7 @@
 		if(pFilter)
 			dlg.m_ffFilter = *pFilter;
 		
-		CString strData;
+		chcore::TString strData;
 		for(size_t stIndex = 0; stIndex < afFilters.GetSize(); ++stIndex)
 		{
 			pFilter = afFilters.GetAt(stIndex);