diff -r 7cbcb2896f0e -r a642906a277a phonebookui/phonebookservices/src/cntservicesubeditview.cpp --- a/phonebookui/phonebookservices/src/cntservicesubeditview.cpp Tue Jul 06 14:05:47 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,80 +0,0 @@ - /* -* Copyright (c) 2009 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: -* -*/ - -#include "cntservicesubeditview.h" -#include "cntservicehandler.h" - -CntServiceSubEditView::CntServiceSubEditView(CntServiceHandler *aServiceHandler) : CntEditView(), -mServiceHandler(aServiceHandler) -{ - -} - -CntServiceSubEditView::~CntServiceSubEditView() -{ - -} - -///*! -//Saves the contact -//*/ -//void CntServiceSubEditView::aboutToCloseView() -//{ -// // save contact if there is one -// if (contact()) -// { -// contactManager()->saveContact(contact()); -// } -// -// CntViewParameters viewParameters; -// QVariant var; -// var.setValue(*contact()); -// viewParameters.insert(ESelectedContact, var); -// viewManager()->back(viewParameters); -//} -// -///*! -//Cancel all changes made and return to comm launcher view -//*/ -//void CntServiceSubEditView::discardAllChanges() -//{ -// QContact oldContact = contactManager()->contact(contact()->localId()); -// -// CntViewParameters viewParameters; -// QVariant var; -// var.setValue(oldContact); -// viewParameters.insert(ESelectedContact, var); -// viewManager()->back(viewParameters); -//} -// -///* -//Handle signals emitted from CntCommands, only used for delete command for now. -//*/ -//int CntServiceSubEditView::handleExecutedCommand(QString aCommand, const QContact &aContact) -//{ -// Q_UNUSED(aContact); -// int result = -1; -// if (aCommand == "delete") -// { -// connect(mServiceHandler, SIGNAL(returnValueDelivered()), qApp, SLOT(quit())); -// mServiceHandler->completeEdit(result); -// result = 0; -// } -// return result; -//} - -// EOF