summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--filter/source/msfilter/escherex.cxx2
-rw-r--r--include/filter/msfilter/escherex.hxx4
2 files changed, 2 insertions, 4 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 6e72a901a661..5b576d2ef5c7 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -3885,7 +3885,7 @@ void EscherPersistTable::PtInsert( sal_uInt32 nID, sal_uInt32 nOfs )
sal_uInt32 EscherPersistTable::PtDelete( sal_uInt32 nID )
{
- EscherPersistTable_impl::iterator it = maPersistTable.begin();
+ ::std::vector< EscherPersistEntry* >::iterator it = maPersistTable.begin();
for( ; it != maPersistTable.end() ; ++it )
{
if ( (*it)->mnID == nID ) {
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 97e19871c708..709fbbdb09de 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -971,13 +971,11 @@ public:
-typedef ::std::vector< EscherPersistEntry* > EscherPersistTable_impl;
-
class MSFILTER_DLLPUBLIC EscherPersistTable
{
public:
- EscherPersistTable_impl maPersistTable;
+ ::std::vector< EscherPersistEntry* > maPersistTable;
bool PtIsID( sal_uInt32 nID );
void PtInsert( sal_uInt32 nID, sal_uInt32 nOfs );