diff -r f8503e232b0c -r 9f17f914e828 bthci/hci2implementations/CommandsEvents/symbian/src/writecurrentiaclapcommand.cpp --- a/bthci/hci2implementations/CommandsEvents/symbian/src/writecurrentiaclapcommand.cpp Tue Apr 27 17:48:21 2010 +0300 +++ b/bthci/hci2implementations/CommandsEvents/symbian/src/writecurrentiaclapcommand.cpp Tue May 11 17:15:36 2010 +0300 @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2006-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" @@ -12,7 +12,7 @@ // // Description: // This file was generated automatically from the template commandsource.tmpl -// on Thu, 29 May 2008 15:17:52 (time stamp) +// on Wed, 07 Apr 2010 11:59:28 (time stamp) // // @@ -38,9 +38,9 @@ EXPORT_C CWriteCurrentIACLAPCommand* CWriteCurrentIACLAPCommand::NewL(TUint8 aNumCurrentIAC, const RArray< TUint32 >& aIACLAP) { - CWriteCurrentIACLAPCommand* self = new (ELeave) CWriteCurrentIACLAPCommand(aNumCurrentIAC, aIACLAP); + CWriteCurrentIACLAPCommand* self = new (ELeave) CWriteCurrentIACLAPCommand(aNumCurrentIAC); CleanupStack::PushL(self); - self->CHCICommandBase::BaseConstructL(); + self->ConstructL(aIACLAP); CleanupStack::Pop(self); return self; } @@ -56,10 +56,9 @@ // Constructors -CWriteCurrentIACLAPCommand::CWriteCurrentIACLAPCommand(TUint8 aNumCurrentIAC, const RArray< TUint32 >& aIACLAP) +CWriteCurrentIACLAPCommand::CWriteCurrentIACLAPCommand(TUint8 aNumCurrentIAC) : CHCICommandBase(KWriteCurrentIACLAPOpcode) , iNumCurrentIAC(aNumCurrentIAC) - , iIACLAP(aIACLAP) { SetExpectsCommandStatusEvent(EFalse); } @@ -70,6 +69,12 @@ SetExpectsCommandStatusEvent(EFalse); } +void CWriteCurrentIACLAPCommand::ConstructL(const RArray< TUint32 >& aIACLAP) + { + CHCICommandBase::BaseConstructL(); + iIACLAP = aIACLAP; + } + // Destructor CWriteCurrentIACLAPCommand::~CWriteCurrentIACLAPCommand() {