convergedcallengine/serviceselector/src/csslistquerydialog.cpp
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
--- a/convergedcallengine/serviceselector/src/csslistquerydialog.cpp	Fri Sep 17 17:09:13 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,86 +0,0 @@
-/*
-* Copyright (c) 2008 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:  This module contains the implementation of 
-*              : CSsListQueryDialog class
-*
-*/
-
-
-//  INCLUDE FILES
-#include "csslistquerydialog.h"
-#include "cssconnectionhandler.h"
-#include "cssuiutilities.h"
-#include "cssserviceutilities.h"
-
-// ================= MEMBER FUNCTIONS =======================================
-
-// -----------------------------------------------------------------------------
-// CSsListQueryDialog::CSsListQueryDialog
-// C++ constructor can NOT contain any code, that
-// might leave.
-// -----------------------------------------------------------------------------
-//
-CSsListQueryDialog::CSsListQueryDialog
-        ( 
-        CEikDialog** aSelf,
-        TInt& aIndex
-        )
-    : CAknListQueryDialog(&aIndex),
-      iSelf( aSelf )
-    {
-    }
-
-// Destructor
-CSsListQueryDialog::~CSsListQueryDialog
-        (
-        // None.
-        )
-    {
-    // Set self pointer as null.
-    // Query could be destroyed by client application or by
-    // the user selection.
-    if ( iSelf )
-       {
-       *iSelf = NULL;
-       iSelf = NULL;
-       }
-    }
-
-// -----------------------------------------------------------------------------
-// CSsListQueryDialog::ExecuteListLD
-// Runs the dialog
-// -----------------------------------------------------------------------------
-//
-TInt CSsListQueryDialog::ExecuteListLD
-        ( 
-        TInt aResourceId,
-        MDesCArray* aItemTextArray,
-        CArrayPtr<CGulIcon>* aIcons
-        )
-    {
-    CAknListQueryDialog::PrepareLC( aResourceId );
-    SetTone( EConfirmationTone );
-    if ( aIcons )
-        {
-        SetIconArrayL( aIcons );
-        }
-    SetItemTextArray( aItemTextArray );
-    SetOwnershipType( ELbmDoesNotOwnItemArray );
-    return CAknListQueryDialog::RunLD();
-    }
-
-
-// ================= OTHER EXPORTED FUNCTIONS ===============================
-
-//  End of File