contentpublishingsrv/contentpublishingutils/contentpublishingmap/src/cpliwmap.cpp
changeset 92 782e3408c2ab
parent 86 e492551a0d54
equal deleted inserted replaced
91:a6d55a2e75be 92:782e3408c2ab
   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;