messagingapp/msgui/appengine/tsrc/testconversationengine/src/testccsrequesthandler.cpp
branchGCC_SURGE
changeset 47 5b14749788d7
parent 34 84197e66a4bd
child 52 12db4185673b
equal deleted inserted replaced
35:a32b19fb291e 47:5b14749788d7
    51 
    51 
    52 // -----------------------------------------------------------------------------
    52 // -----------------------------------------------------------------------------
    53 // CCSRequestHandler::NewLC()
    53 // CCSRequestHandler::NewLC()
    54 // Two-phased constructor.
    54 // Two-phased constructor.
    55 // -----------------------------------------------------------------------------
    55 // -----------------------------------------------------------------------------
    56 EXPORT_C CCSRequestHandler* CCSRequestHandler::NewLC(/*CVPbkContactManager* aVPbkContactManager*/)
    56 EXPORT_C CCSRequestHandler* CCSRequestHandler::NewLC()
    57     {
    57     {
    58 
    58 
    59     CCSRequestHandler* self = new ( ELeave ) CCSRequestHandler();
    59     CCSRequestHandler* self = new ( ELeave ) CCSRequestHandler();
    60     CleanupStack::PushL( self );
    60     CleanupStack::PushL( self );
    61     self->ConstructL(/*aVPbkContactManager*/);
    61     self->ConstructL();
    62 
    62 
    63     return self;
    63     return self;
    64     }
    64     }
    65 
    65 
    66 // -----------------------------------------------------------------------------
    66 // -----------------------------------------------------------------------------