emailservices/emailframework/src/CFSClientAPI.cpp
branchRCL_3
changeset 11 0396474f30f5
parent 8 e1b6206813b4
child 12 4ce476e64c59
equal deleted inserted replaced
10:f5907b1a1053 11:0396474f30f5
    31 // 
    31 // 
    32 // -----------------------------------------------------------------------------
    32 // -----------------------------------------------------------------------------
    33 CFSClientAPI::~CFSClientAPI()
    33 CFSClientAPI::~CFSClientAPI()
    34     {
    34     {
    35     FUNC_LOG;
    35     FUNC_LOG;
    36     delete iAPIRequestHandler;
    36     iAPIRequestHandler->ReleaseInstance();
    37     }
    37     }
    38 
    38 
    39 // -----------------------------------------------------------------------------
    39 // -----------------------------------------------------------------------------
    40 // 
    40 // 
    41 // -----------------------------------------------------------------------------
    41 // -----------------------------------------------------------------------------
    53 // 
    53 // 
    54 // -----------------------------------------------------------------------------
    54 // -----------------------------------------------------------------------------
    55 void CFSClientAPI::ConstructL(MEmailClientPluginManager* aPluginManager)
    55 void CFSClientAPI::ConstructL(MEmailClientPluginManager* aPluginManager)
    56     {
    56     {
    57     FUNC_LOG;
    57     FUNC_LOG;
    58     iAPIRequestHandler = CFSClientAPIRequestHandler::NewL(aPluginManager);
    58     iAPIRequestHandler = CFSClientAPIRequestHandler::GetInstanceL( aPluginManager );
    59     }
    59     }
    60 
    60