contentpublishingsrv/contentpublishingutils/contentpublishingmap/src/cpliwmap.cpp
equal
deleted
inserted
replaced
825 // |
825 // |
826 TBool CCPLiwMap::PropertyExists( const TDesC8& aProperty ) const |
826 TBool CCPLiwMap::PropertyExists( const TDesC8& aProperty ) const |
827 { |
827 { |
828 TBool result( EFalse ); |
828 TBool result( EFalse ); |
829 TInt pos( 0 ); |
829 TInt pos( 0 ); |
830 const TLiwGenericParam* paramForValue = iMap->FindFirst( pos, aProperty ); |
830 iMap->FindFirst( pos, aProperty ); |
831 if ( pos != KErrNotFound ) |
831 if ( pos != KErrNotFound ) |
832 { |
832 { |
833 result = ETrue; |
833 result = ETrue; |
834 } |
834 } |
835 return result; |
835 return result; |