Index: src/ch/TBasePathData.h =================================================================== diff -u -N -r4c09a2d7ab35a30114ff2b7c4db12bc413bf538c -r9a171c5d46f2bc029d99a698d88eeff60497cd3b --- src/ch/TBasePathData.h (.../TBasePathData.h) (revision 4c09a2d7ab35a30114ff2b7c4db12bc413bf538c) +++ src/ch/TBasePathData.h (.../TBasePathData.h) (revision 9a171c5d46f2bc029d99a698d88eeff60497cd3b) @@ -36,10 +36,6 @@ void SetMove(bool bValue) { m_bMove=bValue; } bool GetMove() const { return m_bMove; } - int GetDriveNumber() { return m_iDriveNumber; } - void SetDriveNumber(int iDriveNumber) { m_iDriveNumber = iDriveNumber; } - bool IsDriveNumberSet() const { return m_iDriveNumber != -2; } - void SetDestinationPath(const chcore::TSmartPath& strPath); chcore::TSmartPath GetDestinationPath() const; bool IsDestinationPathSet() const { return !m_pathDst.IsEmpty(); } @@ -50,8 +46,6 @@ private: bool m_bMove; // specifies if we can use MoveFile (if will be moved) - int m_iDriveNumber; // disk number (default -1 - none) - chcore::TSmartPath m_pathDst; // dest path };