diff options
author | Bartosz Kosiorek <gang65@openoffice.org> | 2010-10-05 21:34:41 +0200 |
---|---|---|
committer | Bartosz Kosiorek <gang65@openoffice.org> | 2010-10-05 21:34:41 +0200 |
commit | b138d8d6ed6f8800d08ada0ce6f73fa162365ba1 (patch) | |
tree | d6d44dc06ec4aa4f156c16adcd331c64c242841b /svl | |
parent | 3bb6145d76abd333753bce0d5be74e8dd2df13bc (diff) |
svarray: #i112395#: SvShorts
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/svstdarr.hxx | 7 | ||||
-rw-r--r-- | svl/source/memtools/svarray.cxx | 1 |
2 files changed, 1 insertions, 7 deletions
diff --git a/svl/inc/svl/svstdarr.hxx b/svl/inc/svl/svstdarr.hxx index a0f0151660a9..3cdff2fab196 100644 --- a/svl/inc/svl/svstdarr.hxx +++ b/svl/inc/svl/svstdarr.hxx @@ -130,12 +130,7 @@ SV_DECL_VARARR_SORT_VISIBILITY( SvLongsSort, long, 1, 1, SVL_DLLPUBLIC ) #endif //#endif -//#ifdef _SVSTDARR_SHORTS -#ifndef _SVSTDARR_SHORTS_DECL -SV_DECL_VARARR_VISIBILITY( SvShorts, short, 1, 1, SVL_DLLPUBLIC ) -#define _SVSTDARR_SHORTS_DECL -#endif -//#endif +typedef std::deque< short > SvShorts; /* form here all Arrays for Strings, ByteString and then diff --git a/svl/source/memtools/svarray.cxx b/svl/source/memtools/svarray.cxx index 9eb9fbf237fb..8f8c563bc9b7 100644 --- a/svl/source/memtools/svarray.cxx +++ b/svl/source/memtools/svarray.cxx @@ -78,7 +78,6 @@ USHORT SvPtrarrPlain::GetPos( const VoidPtr aElement ) const SV_IMPL_VARARR( SvULongs, ULONG ) SV_IMPL_VARARR( SvUShorts, USHORT ) SV_IMPL_VARARR( SvLongs, long) -SV_IMPL_VARARR( SvShorts, short ) SV_IMPL_VARARR_SORT( SvULongsSort, ULONG ) SV_IMPL_VARARR_SORT( SvLongsSort, long ) |