mtpfws/mtpfw/dataproviders/dputility/src/cmtpgetobjectpropvalue.cpp
branchRCL_3
changeset 58 142dacf7b30e
parent 48 debf68073f2f
--- 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);
-    }