Index: src/libchcore/TFeedbackHandlerWrapper.cpp =================================================================== diff -u -N -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 -r4d1f8110906889d56552771fb58a6de86bc54a29 --- src/libchcore/TFeedbackHandlerWrapper.cpp (.../TFeedbackHandlerWrapper.cpp) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) +++ src/libchcore/TFeedbackHandlerWrapper.cpp (.../TFeedbackHandlerWrapper.cpp) (revision 4d1f8110906889d56552771fb58a6de86bc54a29) @@ -32,35 +32,35 @@ { } - EFeedbackResult TFeedbackHandlerWrapper::FileError(const TString& strSrcPath, const TString& strDstPath, EFileError eFileError, unsigned long ulError) + TFeedbackResult TFeedbackHandlerWrapper::FileError(const TString& strSrcPath, const TString& strDstPath, EFileError eFileError, unsigned long ulError) { TScopedRunningTimeTrackerPause scopedTimePause(m_rTimeGuard); return m_spFeedbackHandler->FileError(strSrcPath, strDstPath, eFileError, ulError); } - EFeedbackResult TFeedbackHandlerWrapper::FileAlreadyExists(const TFileInfoPtr& spSrcFileInfo, const TFileInfoPtr& spDstFileInfo) + TFeedbackResult TFeedbackHandlerWrapper::FileAlreadyExists(const TFileInfo& spSrcFileInfo, const TFileInfo& spDstFileInfo) { TScopedRunningTimeTrackerPause scopedTimePause(m_rTimeGuard); return m_spFeedbackHandler->FileAlreadyExists(spSrcFileInfo, spDstFileInfo); } - EFeedbackResult TFeedbackHandlerWrapper::NotEnoughSpace(const TString& strSrcPath, const TString& strDstPath, unsigned long long ullRequiredSize) + TFeedbackResult TFeedbackHandlerWrapper::NotEnoughSpace(const TString& strSrcPath, const TString& strDstPath, unsigned long long ullRequiredSize) { TScopedRunningTimeTrackerPause scopedTimePause(m_rTimeGuard); return m_spFeedbackHandler->NotEnoughSpace(strSrcPath, strDstPath, ullRequiredSize); } - EFeedbackResult TFeedbackHandlerWrapper::OperationFinished() + TFeedbackResult TFeedbackHandlerWrapper::OperationFinished() { TScopedRunningTimeTrackerPause scopedTimePause(m_rTimeGuard); return m_spFeedbackHandler->OperationFinished(); } - EFeedbackResult TFeedbackHandlerWrapper::OperationError() + TFeedbackResult TFeedbackHandlerWrapper::OperationError() { TScopedRunningTimeTrackerPause scopedTimePause(m_rTimeGuard);