diff -r debf68073f2f -r 142dacf7b30e mtpfws/mtpfw/dataproviders/dputility/src/cmtpgetobjectpropvalue.cpp --- a/mtpfws/mtpfw/dataproviders/dputility/src/cmtpgetobjectpropvalue.cpp Wed Sep 15 13:07:27 2010 +0300 +++ b/mtpfws/mtpfw/dataproviders/dputility/src/cmtpgetobjectpropvalue.cpp Wed Oct 13 15:29:02 2010 +0300 @@ -165,9 +165,6 @@ case EMTPObjectPropCodeNonConsumable: ServiceNonConsumableL(); break; - case EMTPObjectPropCodeHidden: - ServiceHiddenL(); - break; default: User::Leave( KErrNotSupported ); break; @@ -268,19 +265,6 @@ SendDataL(iMTPTypeUint8); } -void CMTPGetObjectPropValue::ServiceHiddenL() - { - TBool isHidden = iFileEntry.IsHidden(); - if ( isHidden ) - { - iMTPTypeUint16.Set(EMTPHidden); - } - else - { - iMTPTypeUint16.Set(EMTPVisible); - } - SendDataL(iMTPTypeUint16); - }