summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-12 13:27:41 +0200
committerNoel Grandin <noel@peralex.com>2015-10-13 10:07:49 +0200
commitd6f97a21249668fe401dfcbf1827669c1bb0f043 (patch)
tree81783f74a169bc720b72085efaa4bf33e0c13e04
parent9abb98e0199363e7bf9d945e4719ff3a752984b2 (diff)
inline typedef
Change-Id: I6ec88fbdb9bc0e86f4e53eb765eabd5382a25b88
-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 );