201037 PDK_4.0.a
authorhgs
Thu, 16 Sep 2010 12:47:32 +0300
changeset 35 304daf3cbbe0
parent 30 d02cab725a8c
201037
nettools/conntest/group/ConnTest.mmp
nettools/conntest/inc/ConnTestAppUi.h
nettools/conntest/src/ConnTestAppUi.cpp
--- 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
--- 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<CCustomPrefsData*, KConnTestViews>&  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
--- 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 <aknnotewrappers.h> 
 #include <CMessageData.h>
 #include <TSendingCapabilities.h> 
-#include <sendui.h>
 
 #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
     }
 
 // ----------------------------------------------------