meetingrequest/mrtasks/mrcaleventtaskplugin/src/cmrcalentryuiedittask.cpp
branchRCL_3
changeset 12 4ce476e64c59
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Implementation for ESMR calendar event task
       
    15 *
       
    16 */
       
    17 
       
    18 #include "cmrcalentryuiedittask.h"
       
    19 
       
    20 #include "emailtrace.h"
       
    21 
       
    22 namespace { // codescanner::namespace
       
    23 
       
    24 }//namespace
       
    25 
       
    26 // ======== MEMBER FUNCTIONS ========
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // CESMRCalEntryUiEditTask::CESMRCalEntryUiEditTask
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 CESMRCalEntryUiEditTask::CESMRCalEntryUiEditTask()
       
    33     {
       
    34     FUNC_LOG;
       
    35     //do nothing
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // CESMRCalEntryUiEditTask::~CESMRCalEntryUiEditTask
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 CESMRCalEntryUiEditTask::~CESMRCalEntryUiEditTask()
       
    43     {
       
    44     FUNC_LOG;
       
    45     //do nothing
       
    46     }
       
    47 
       
    48 // ---------------------------------------------------------------------------
       
    49 // CESMRCalEntryUiEditTask::NewL
       
    50 // ---------------------------------------------------------------------------
       
    51 //
       
    52 CESMRCalEntryUiEditTask* CESMRCalEntryUiEditTask::NewL( MESMRCalEntry& /*aEntry*/ )
       
    53     {
       
    54     FUNC_LOG;
       
    55     CESMRCalEntryUiEditTask* self = new (ELeave) CESMRCalEntryUiEditTask();
       
    56     CleanupStack::PushL(self);
       
    57     self->ConstructL();
       
    58     CleanupStack::Pop(self);
       
    59     return self;
       
    60     }
       
    61 
       
    62 // ---------------------------------------------------------------------------
       
    63 // CESMRCalEntryUiEditTask::ConstructL
       
    64 // ---------------------------------------------------------------------------
       
    65 //
       
    66 void CESMRCalEntryUiEditTask::ConstructL()
       
    67     {
       
    68     FUNC_LOG;
       
    69     }
       
    70 
       
    71 // ---------------------------------------------------------------------------
       
    72 // CESMRCalEntryUiEditTask::ExecuteTaskL
       
    73 // ---------------------------------------------------------------------------
       
    74 //
       
    75 void CESMRCalEntryUiEditTask::ExecuteTaskL()
       
    76     {
       
    77     FUNC_LOG;
       
    78 
       
    79     // Edit calendar event
       
    80     EditCalEventL();
       
    81     }
       
    82 
       
    83 // ---------------------------------------------------------------------------
       
    84 // CESMRCalEntryUiEditTask::EditCalEventL
       
    85 // ---------------------------------------------------------------------------
       
    86 //
       
    87 void CESMRCalEntryUiEditTask::EditCalEventL()
       
    88     {
       
    89     FUNC_LOG;
       
    90 
       
    91     }
       
    92 
       
    93 // EOF
       
    94