--- a/featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp Fri Mar 19 10:00:55 2010 +0200
+++ b/featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp Fri Apr 16 16:49:27 2010 +0300
@@ -384,16 +384,12 @@
// RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&)
// -----------------------------------------------------------------------------
//
-TInt RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
+void RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
{
TPckgBuf<TInt> pckg;
- TInt retval( KErrNone );
-
- iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
- TIpcArgs args( &iFeaturePckg );
- SendReceive( EFeatMgrReqNotify, args, aStatus );
-
- return retval;
+ iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
+ TIpcArgs args( &iFeaturePckg );
+ SendReceive( EFeatMgrReqNotify, args, aStatus );
}
// -----------------------------------------------------------------------------