# HG changeset patch # User hgs # Date 1284630452 -10800 # Node ID 304daf3cbbe0a278b13495dfff8aa1e31b09b94f # Parent d02cab725a8c05f0804507b2bfe48ff25d6e4e94 201037 diff -r d02cab725a8c -r 304daf3cbbe0 nettools/conntest/group/ConnTest.mmp --- a/nettools/conntest/group/ConnTest.mmp Mon Aug 23 13:07:46 2010 +0300 +++ b/nettools/conntest/group/ConnTest.mmp Thu Sep 16 12:47:32 2010 +0300 @@ -96,7 +96,6 @@ LIBRARY insock.lib LIBRARY esock.lib LIBRARY ws32.lib -LIBRARY sendui.lib LIBRARY cmmanager.lib LIBRARY netmeta.lib LIBRARY extendedconnpref.lib diff -r d02cab725a8c -r 304daf3cbbe0 nettools/conntest/inc/ConnTestAppUi.h --- a/nettools/conntest/inc/ConnTestAppUi.h Mon Aug 23 13:07:46 2010 +0300 +++ b/nettools/conntest/inc/ConnTestAppUi.h Thu Sep 16 12:47:32 2010 +0300 @@ -34,7 +34,6 @@ class CConnTestView; class CAknWarningNote; class CIpdumpEngine; -class CSendUi; class CSettingData; class CCustomPrefsData; @@ -139,7 +138,6 @@ TFixedArray& iCustomPrefsDataArray; CAknWarningNote* iWarningDialog; // notice, currently used: ->ExecuteLD, so deleted automatically CIpdumpEngine* iIpdumpEngine; // Only 1 dump engine/app, thus appui owns it - CSendUi* iSendUi; // For sending the log }; #endif 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 } // ----------------------------------------------------