diff -r 0ca79e3612d9 -r 9ba7f05d28a5 connectivitymodules/SeCon/services/pcd/inc/sconbackuprestore.h --- a/connectivitymodules/SeCon/services/pcd/inc/sconbackuprestore.h Wed Jun 23 18:02:53 2010 +0300 +++ b/connectivitymodules/SeCon/services/pcd/inc/sconbackuprestore.h Tue Jul 06 14:06:02 2010 +0300 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2005-2008 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" @@ -37,13 +37,12 @@ /** * Two-phase constructor * @param aQueue The address of CSConBackupRestoreQueue - * @param aMaxObjectSize Max object size * @param aFs aReference to RFs connection. * @return CSConBackupRestore instance */ static CSConBackupRestore* NewL( CSConBackupRestoreQueue* aQueue, - const TInt aMaxObjectSize, RFs& aFs ); + RFs& aFs ); /** * Destructor * @return none @@ -84,10 +83,9 @@ CSConBackupRestore( CSConBackupRestoreQueue* aQueue, RFs& aFs ); /** * Initializes member data - * @param aMaxObjectSize Max object size * @return none */ - void ConstructL( const TInt aMaxObjectSize ); + void ConstructL(); /** * Implementation of CActive::DoCancel() * @return none @@ -103,7 +101,6 @@ CSConBackupRestoreQueue* iQueue; CSConSBEClient* iSBEClient; TInt iCurrentTask; - TInt iMaxObjectSize; TBool iBackupRestoreActive; RFs& iFs; };