Kaydet (Commit) d6f97a21 authored tarafından Noel Grandin's avatar Noel Grandin

inline typedef

Change-Id: I6ec88fbdb9bc0e86f4e53eb765eabd5382a25b88
üst 9abb98e0
...@@ -3885,7 +3885,7 @@ void EscherPersistTable::PtInsert( sal_uInt32 nID, sal_uInt32 nOfs ) ...@@ -3885,7 +3885,7 @@ void EscherPersistTable::PtInsert( sal_uInt32 nID, sal_uInt32 nOfs )
sal_uInt32 EscherPersistTable::PtDelete( sal_uInt32 nID ) 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 ) for( ; it != maPersistTable.end() ; ++it )
{ {
if ( (*it)->mnID == nID ) { if ( (*it)->mnID == nID ) {
......
...@@ -971,13 +971,11 @@ public: ...@@ -971,13 +971,11 @@ public:
typedef ::std::vector< EscherPersistEntry* > EscherPersistTable_impl;
class MSFILTER_DLLPUBLIC EscherPersistTable class MSFILTER_DLLPUBLIC EscherPersistTable
{ {
public: public:
EscherPersistTable_impl maPersistTable; ::std::vector< EscherPersistEntry* > maPersistTable;
bool PtIsID( sal_uInt32 nID ); bool PtIsID( sal_uInt32 nID );
void PtInsert( sal_uInt32 nID, sal_uInt32 nOfs ); void PtInsert( sal_uInt32 nID, sal_uInt32 nOfs );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment