summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-05-18 14:12:56 +0200
committerDavid Tardon <dtardon@redhat.com>2011-05-18 14:56:38 +0200
commit678457f397261d7a33213ec8c1ef05339439c531 (patch)
treec76531882b8bbc970df6254622cf2d954f5f5cfe /sfx2
parentc10f1ec5ba6f36e436537e278a19dfcb394d6f65 (diff)
remove unused (and wrong :) code
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/sfx2/minarray.hxx6
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 );\