summaryrefslogtreecommitdiff
path: root/svl/inc/svl
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-20 10:39:23 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-20 10:39:23 +0100
commitec7b6d84939e00f30d40218be8adae6318f90ea8 (patch)
treefe8e8b8ab457352ffcda9af61bdc177a6d7965ab /svl/inc/svl
parentd87d45752f0b746939a349abcd8a8b487a422df9 (diff)
Remove TCPP support
Old Turbo C++ compiler.
Diffstat (limited to 'svl/inc/svl')
-rw-r--r--svl/inc/svl/svarray.hxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/svl/inc/svl/svarray.hxx b/svl/inc/svl/svarray.hxx
index a1d887994393..db984552f6ec 100644
--- a/svl/inc/svl/svarray.hxx
+++ b/svl/inc/svl/svarray.hxx
@@ -843,28 +843,11 @@ void nm::Remove( const AE &aE, USHORT nL )\
nm##_SAR::Remove( nP, nL);\
}\
-#if defined(TCPP)
-
-#define _SORTARR_BLC_CASTS(nm, AE )\
- BOOL Insert( AE &aE ) {\
- return Insert( (const AE&)aE );\
- }\
- USHORT GetPos( AE& aE ) const { \
- return SvPtrarr::GetPos((const VoidPtr&)aE);\
- }\
- void Remove( AE& aE, USHORT nL = 1 ) { \
- Remove( (const AE&) aE, nL );\
- }
-
-#else
-
#define _SORTARR_BLC_CASTS(nm, AE )\
USHORT GetPos( const AE& aE ) const { \
return SvPtrarr::GetPos((const VoidPtr&)aE);\
}
-#endif
-
#define _SV_DECL_PTRARR_SORT_ALG(nm, AE, IS, GS, vis)\
SV_DECL_PTRARR_VISIBILITY(nm##_SAR, AE, IS, GS, vis)\
_SORT_CLASS_DEF(nm, AE, IS, GS, vis)\