emailservices/emailframework/src/CFSClientAPI.cpp
branchRCL_3
changeset 33 da5135c61bad
parent 32 a3a1ae9acec6
equal deleted inserted replaced
32:a3a1ae9acec6 33:da5135c61bad
    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