Index: src/ch/FeedbackHandler.cpp
===================================================================
diff -u -N -r3993a75a24145732742d61be638111d1d85c367b -re6f64ea0eecaf86dfa1a42c80604d227b69be768
--- src/ch/FeedbackHandler.cpp	(.../FeedbackHandler.cpp)	(revision 3993a75a24145732742d61be638111d1d85c367b)
+++ src/ch/FeedbackHandler.cpp	(.../FeedbackHandler.cpp)	(revision e6f64ea0eecaf86dfa1a42c80604d227b69be768)
@@ -30,9 +30,9 @@
 using namespace chengine;
 using namespace string;
 
-chengine::EFeedbackResult CFeedbackHandler::FileError(const TString& strSrcPath, const TString& strDstPath, EFileError /*eFileError*/, unsigned long ulError, FeedbackRules& rNewRules)
+chengine::EFeedbackResult CFeedbackHandler::FileError(const TString& strSrcPath, const TString& strDstPath, EFileError eOperationType, unsigned long ulError, FeedbackRules& rNewRules)
 {
-	CFeedbackFileErrorDlg dlg(rNewRules, strSrcPath.c_str(), strDstPath.c_str(), ulError);
+	CFeedbackFileErrorDlg dlg(rNewRules, strSrcPath.c_str(), strDstPath.c_str(), eOperationType, ulError);
 	EFeedbackResult eResult = (EFeedbackResult)dlg.DoModal();
 
 	if(dlg.GetRules().IsModified())
@@ -57,9 +57,9 @@
 	return eResult;
 }
 
-chengine::EFeedbackResult CFeedbackHandler::NotEnoughSpace(const TString& strSrcPath, const TString& strDstPath, unsigned long long ullRequiredSize, FeedbackRules& rNewRules)
+chengine::EFeedbackResult CFeedbackHandler::NotEnoughSpace(const TString& strDstPath, unsigned long long ullRequiredSize, FeedbackRules& rNewRules)
 {
-	CFeedbackNotEnoughSpaceDlg dlg(rNewRules, ullRequiredSize, strSrcPath.c_str(), strDstPath.c_str());
+	CFeedbackNotEnoughSpaceDlg dlg(rNewRules, ullRequiredSize, strDstPath.c_str());
 	EFeedbackResult eResult = (EFeedbackResult) dlg.DoModal();
 
 	if(dlg.GetRules().IsModified())