diff -r a179b74831c9 -r c1f20ce4abcf userlibandfileserver/fileserver/sfat32/inc/sl_std.inl --- a/userlibandfileserver/fileserver/sfat32/inc/sl_std.inl Thu Aug 19 11:14:22 2010 +0300 +++ b/userlibandfileserver/fileserver/sfat32/inc/sl_std.inl Tue Aug 31 16:34:26 2010 +0300 @@ -178,14 +178,14 @@ } -/** @return refrence to the fat table owned by the mount */ +/** @return reference to the fat table owned by the mount */ CFatTable& CFatMountCB::FAT() const { return(*iFatTable); } /** - @return refrence to the file system object that has produced this CFatMountCB + @return reference to the file system object that has produced this CFatMountCB */ CFatFileSystem& CFatMountCB::FatFileSystem() const { @@ -495,7 +495,7 @@ /** Returns the fat table used by the file system for this mount -@return Refrence to the Fat table owned by the mount +@return Reference to the Fat table owned by the mount */ CFatTable& CFatFileCB::FAT() {return(FatMount().FAT());} @@ -523,9 +523,9 @@ } void CFatFileCB::IndicateFileSizeModified(TBool aModified) - { - iFileSizeModified = aModified; - } + { + iFileSizeModified = aModified; + } //----------------------------------------------------------------------------- /** @return ETrue if file attributes' 'Modified' flag is set*/ @@ -645,23 +645,13 @@ } -//----------------------------------------------------------------------------- -/** - @return ETrue if the cluster number aClusterNo is valid, i.e. belongs to the FAT table -*/ -inline TBool CFatTable::ClusterNumberValid(TUint32 aClusterNo) const - { - return (aClusterNo >= KFatFirstSearchCluster) && (aClusterNo < iMaxEntries); - } - - /** @return Maximal number of addresable FAT entries. This value is taken from the owning mount */ inline TUint32 CFatTable::MaxEntries() const { - ASSERT(iMaxEntries > 0); - return iMaxEntries; + ASSERT(iMaxEntries > 0); + return iMaxEntries; }