emailservices/emailframework/src/CFSClientAPI.cpp
branchRCL_3
changeset 16 4ce476e64c59
parent 13 0396474f30f5
equal deleted inserted replaced
13:0396474f30f5 16:4ce476e64c59
    31 // 
    31 // 
    32 // -----------------------------------------------------------------------------
    32 // -----------------------------------------------------------------------------
    33 CFSClientAPI::~CFSClientAPI()
    33 CFSClientAPI::~CFSClientAPI()
    34     {
    34     {
    35     FUNC_LOG;
    35     FUNC_LOG;
    36     iAPIRequestHandler->ReleaseInstance();
    36     delete iAPIRequestHandler;
    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::GetInstanceL( aPluginManager );
    58     iAPIRequestHandler = CFSClientAPIRequestHandler::NewL(aPluginManager);
    59     }
    59     }
    60 
    60