diff -r d02cab725a8c -r 304daf3cbbe0 nettools/conntest/src/ConnTestAppUi.cpp --- a/nettools/conntest/src/ConnTestAppUi.cpp Mon Aug 23 13:07:46 2010 +0300 +++ b/nettools/conntest/src/ConnTestAppUi.cpp Thu Sep 16 12:47:32 2010 +0300 @@ -22,7 +22,6 @@ #include #include #include -#include #include "ConnTestAppUi.h" #include "ConnTestView.h" @@ -114,7 +113,6 @@ } delete iDecoratedTabGroup; iConnTestViews.Reset(); - delete iSendUi; // currently used with ->ExecuteLD, so deleted automatically elsewhere // delete iWarningDialog; } @@ -281,34 +279,7 @@ // void CConnTestAppUi::SendLogFileL() { - if(!iIpdumpEngine) - { - iIpdumpEngine = CIpdumpEngine::NewL(); - } - if(!iSendUi) - { - iSendUi = CSendUi::NewL(); - } - CMessageData* messageData = CMessageData::NewL(); - CleanupStack::PushL(messageData); - - // - // Since CSendUi doesn't support sending .log or .cap files, - // the file is renamed here. - // - _LIT(KNewName, "c:\\logs\\tcpdump\\probe.cap.txt"); - RFs fs; - if (fs.Connect() == KErrNone) - { - fs.Replace(iIpdumpEngine->LogFileName(), KNewName); - } - fs.Close(); - - messageData->AppendAttachmentL(KNewName); - - TSendingCapabilities cap(0, 1024, TSendingCapabilities::ESupportsAttachments); - iSendUi->ShowQueryAndSendL(messageData, cap); - CleanupStack::PopAndDestroy(messageData); // messageData + // Empty implementation, CSendUi dependency removed } // ----------------------------------------------------