diff options
author | David Tardon <dtardon@redhat.com> | 2011-05-18 14:12:56 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-05-18 14:56:38 +0200 |
commit | 678457f397261d7a33213ec8c1ef05339439c531 (patch) | |
tree | c76531882b8bbc970df6254622cf2d954f5f5cfe | |
parent | c10f1ec5ba6f36e436537e278a19dfcb394d6f65 (diff) |
remove unused (and wrong :) code
-rw-r--r-- | sfx2/inc/sfx2/minarray.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sfx2/inc/sfx2/minarray.hxx b/sfx2/inc/sfx2/minarray.hxx index e3acd69bd9..9b40dacf9c 100644 --- a/sfx2/inc/sfx2/minarray.hxx +++ b/sfx2/inc/sfx2/minarray.hxx @@ -60,7 +60,6 @@ public:\ const T& GetObject( sal_uInt16 nPos ) const; \ T& GetObject( sal_uInt16 nPos ); \ \ - void Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart = 0, sal_uInt16 nEnd = USHRT_MAX );\ void Insert( sal_uInt16 nPos, const T& rElem );\ void Insert( sal_uInt16 nPos, const T& rElems, sal_uInt16 nLen );\ void Append( const T& rElem );\ @@ -77,11 +76,6 @@ public:\ void Clear() { Remove( 0, Count() ); }\ };\ \ -inline void ARR::Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart, sal_uInt16 nEnd )\ -{\ - Insert( nPos, *(rIns.pData+(sizeof(T)*nStart)), nStart-nEnd+1 );\ -}\ -\ inline void ARR::Insert( sal_uInt16 nPos, const T& rElem )\ {\ Insert( nPos, rElem, 1 );\ |