diff -r 13d7c31c74e0 -r b183ec05bd8c omaprovisioning/provisioning/ProvisioningCx/Src/CWPCxAppUi.cpp --- a/omaprovisioning/provisioning/ProvisioningCx/Src/CWPCxAppUi.cpp Thu Aug 19 10:44:50 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,80 +0,0 @@ -/* -* Copyright (c) 2002 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" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Provisioning context list -* -*/ - - -// INCLUDE FILES -#include "CWPCxAppUi.h" - -#include -#include -#include -#include "CWPCxView.h" -#include "CWPCxContainer.h" -#include "provisioningCx.hrh" - -// ================= MEMBER FUNCTIONS ======================= -// -// ---------------------------------------------------------- -// CWPCxAppUi::ConstructL() -// ---------------------------------------------------------- -// -void CWPCxAppUi::ConstructL() - { - #ifdef __SERIES60_32__ - BaseConstructL( EAknEnableSkin | EAknEnableMSK); - #else - BaseConstructL( EAknEnableSkin); - #endif - - CWPCxView* view1 = new (ELeave) CWPCxView; - - CleanupStack::PushL( view1 ); - view1->ConstructL(); - AddViewL( view1 ); // transfer ownership to CAknViewAppUi - CleanupStack::Pop(); // view1 - } - -// Destructor -CWPCxAppUi::~CWPCxAppUi() - { - } - -// ---------------------------------------------------- -// CWPCxAppUi::HandleCommandL -// ---------------------------------------------------- -// -void CWPCxAppUi::HandleCommandL(TInt aCommand) - { - switch ( aCommand ) - { - case EAknCmdHelp: - { - HlpLauncher::LaunchHelpApplicationL( iEikonEnv->WsSession(), AppHelpContextL() ); - break; - } - case EEikCmdExit: - { - Exit(); - break; - } - - default: - break; - } - } - -// End of File