summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
authorJiri Blecha <blechji4@fel.cvut.cz>2013-03-02 17:25:06 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-03-04 10:33:40 +0000
commit66f426b8fa1ceff10ac26319796af73ab0ef198d (patch)
tree30019be2448fb5e19529e9f7282b27feefc57dfe /tools/inc
parent8f113d08cebd7529e62f928fbf71f36df9ec748e (diff)
The macro FEAT_FSYS_DOUBLESPEED has been removed and the related #if / #endif have been removed too.
Bug: 61516 Change-Id: Id347e87a8789ddbe550dde7d7281d9c1cad0c199
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/tools/fsys.hxx8
1 files changed, 2 insertions, 6 deletions
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 <cstdarg>
#include <vector>
-#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; }