syncmlfw/ds/settings/src/NSmlDSSettings.cpp
branchRCL_3
changeset 18 2de6635c154b
parent 13 86979fe66c4c
child 25 b183ec05bd8c
--- a/syncmlfw/ds/settings/src/NSmlDSSettings.cpp	Tue May 11 16:59:53 2010 +0300
+++ b/syncmlfw/ds/settings/src/NSmlDSSettings.cpp	Tue May 25 13:36:17 2010 +0300
@@ -31,7 +31,6 @@
 #include "nsmldsagconstants.h"
 #include <centralrepository.h> //CRepository
 #include <NsmlOperatorDataCRKeys.h> // KCRUidOperatorDatasyncInternalKeys
-#include <NsmlOperatorErrorCRKeys.h> // KCRUidOperatorDatasyncErrorKeys
 
 _LIT(Kinfile,"z:\\Private\\101F99FB\\VariantData.xml");
 const TInt KUrlLength = 256;
@@ -983,51 +982,4 @@
     return buf;
     }
     
-//-----------------------------------------------------------------------------
-// CNSmlDSSettings::StoreSyncType
-// Checks if received Alert Code is a sync type and tries to convert
-// it to Sync Type (TSmlSyncType).
-//-----------------------------------------------------------------------------
-//
-EXPORT_C void CNSmlDSSettings::StoreSyncType( const TDes8& aAlertCode )
-    {
-    TInt syncType = KErrNotFound;
-
-    if ( aAlertCode == KNSmlDSTwoWay )
-        {
-        syncType = ESmlTwoWay;
-        }
-    else if ( aAlertCode == KNSmlDSOneWayFromServer )
-        {
-        syncType = ESmlOneWayFromServer;
-        }
-    else if ( aAlertCode == KNSmlDSOneWayFromClient )
-        {
-        syncType = ESmlOneWayFromClient;
-        }
-    else if ( aAlertCode == KNSmlDSSlowSync )
-        {
-        syncType = ESmlSlowSync;
-        }
-    else if ( aAlertCode == KNSmlDSRefreshFromServer )
-        {
-        syncType = ESmlRefreshFromServer;
-        }
-    else if ( aAlertCode == KNSmlDSRefreshFromClient )
-        {
-        syncType = ESmlRefreshFromClient;
-        }
-
-    if ( syncType != KErrNotFound )
-        {
-        CRepository* rep = NULL;
-        TRAPD ( err, rep = CRepository::NewL( KCRUidOperatorDatasyncErrorKeys ) );
-        if ( err == KErrNone )
-            {
-            rep->Set( KNsmlOpDsSyncType, syncType );
-            delete rep;
-            }
-        }
-    }
-
 //  End of File