From 66f426b8fa1ceff10ac26319796af73ab0ef198d Mon Sep 17 00:00:00 2001 From: Jiri Blecha Date: Sat, 2 Mar 2013 17:25:06 +0100 Subject: The macro FEAT_FSYS_DOUBLESPEED has been removed and the related #if / #endif have been removed too. Bug: 61516 Change-Id: Id347e87a8789ddbe550dde7d7281d9c1cad0c199 --- tools/inc/tools/fsys.hxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'tools/inc') diff --git a/tools/inc/tools/fsys.hxx b/tools/inc/tools/fsys.hxx index 293fea962c27..b710080c4395 100644 --- a/tools/inc/tools/fsys.hxx +++ b/tools/inc/tools/fsys.hxx @@ -30,8 +30,6 @@ #include #include -#define FEAT_FSYS_DOUBLESPEED - // FSys-Types class DirEntry; class FileStat; @@ -188,9 +186,8 @@ class TOOLS_DLLPUBLIC DirEntry friend struct DirReader_Impl; friend class FileCopier; -#ifdef FEAT_FSYS_DOUBLESPEED FileStat* pStat; // optional -#endif + rtl::OString aName; DirEntry* pParent; sal_uIntPtr nError; @@ -214,10 +211,9 @@ protected: DirEntryFlag ImpTheFlag() const { return eFlag; }; DirEntry* ImpChangeParent( DirEntry* pNewParent, sal_Bool bNormalize = sal_True ); DirEntry* ImpGetParent() { return pParent; } -#ifdef FEAT_FSYS_DOUBLESPEED + FileStat* ImpGetStat() const { return pStat; } void ImpSetStat( FileStat *p ) { pStat = p; } -#endif protected: void SetError( sal_uIntPtr nErr ) { nError = nErr; } -- cgit