contentpublishingsrv/contentpublishingutils/contentpublishingmap/src/cpliwmap.cpp
changeset 66 32469d7d46ff
parent 0 79c6a41cd166
equal deleted inserted replaced
61:8e5041d13c84 66:32469d7d46ff
   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;