# HG changeset patch # User Dremov Kirill (Nokia-D-MSW/Tampere) # Date 1273842961 -10800 # Node ID 4fbcea97e97b08ccdb3a5ec030ffaeeebfe934cf # Parent e0bc3c7066a2bf20ef2ce86422982a4c08b9598d Revision: 201017 Kit: 201019 diff -r e0bc3c7066a2 -r 4fbcea97e97b pressrv_plat/simple_documents_api/inc/msimpledocument.h --- a/pressrv_plat/simple_documents_api/inc/msimpledocument.h Mon May 03 12:53:21 2010 +0300 +++ b/pressrv_plat/simple_documents_api/inc/msimpledocument.h Fri May 14 16:16:01 2010 +0300 @@ -22,7 +22,7 @@ #define M_simpledocument_H #include -#include +#include #include // FORWARD DECLARATION diff -r e0bc3c7066a2 -r 4fbcea97e97b simpleengine/siputils/src/simplesipconnection.cpp --- a/simpleengine/siputils/src/simplesipconnection.cpp Mon May 03 12:53:21 2010 +0300 +++ b/simpleengine/siputils/src/simplesipconnection.cpp Fri May 14 16:16:01 2010 +0300 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" @@ -445,11 +445,10 @@ temp->Des().Copy( KSipPrefix() ); temp->Des().Append( aReq.Recipient() ); User::LeaveIfError( parser.Parse( *temp )); - CUri8* uri = CUri8::NewLC( parser ); // CS: 3 + CUri8* uri = CUri8::NewL( parser ); // Start to fill header, Remote URI CSIPRequestElements* elems = CSIPRequestElements::NewL( uri ); - CleanupStack::Pop( uri ); // ownership given to elems // CS: 2 CleanupStack::PushL( elems ); // CS: 3 TUriParser8 parser3; @@ -1539,11 +1538,10 @@ // get request uri from a request TUriParser8 parser; User::LeaveIfError( parser.Parse( aRemoteURI )); - CUri8* uri = CUri8::NewLC( parser ); + CUri8* uri = CUri8::NewL( parser ); // Start to fill headres, Remote URI - CSIPRequestElements* elems = CSIPRequestElements::NewL(uri); - CleanupStack::Pop( uri); // ownership given to elems + CSIPRequestElements* elems = CSIPRequestElements::NewL( uri ); CleanupStack::PushL( elems ); // To header not needed when remote uri set