convergedcallengine/cce/src/cccecallparameters.cpp
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
--- a/convergedcallengine/cce/src/cccecallparameters.cpp	Tue Aug 31 15:45:17 2010 +0300
+++ b/convergedcallengine/cce/src/cccecallparameters.cpp	Wed Sep 01 12:15:03 2010 +0100
@@ -65,7 +65,6 @@
     cloned->SetLineType(iLineType);
     cloned->SetUUSId(iUUSId);
     cloned->SetOrigin(iOrigin);
-    cloned->SetAlphaId(iAlphaId);
     return cloned;
     }
 
@@ -91,18 +90,18 @@
 // -----------------------------------------------------------------------------
 //
 void CCCECallParameters::SetLineType(CCCECallParameters::TCCELineType aLineType) 
-    { 
-    iLineType = aLineType; 
-    }
+	{ 
+	iLineType = aLineType; 
+	}
 
 // -----------------------------------------------------------------------------
 // Gets the line type of the call.
 // -----------------------------------------------------------------------------
 //
 CCCECallParameters::TCCELineType CCCECallParameters::LineType() const 
-    {
-    return iLineType;
-    }
+	{
+	return iLineType;
+	}
 
 // -----------------------------------------------------------------------------
 // Sets the service id identifying the service provider of the call.
@@ -110,81 +109,72 @@
 //
 void CCCECallParameters::SetUUSId(TBuf<KCCPUUSIdSize> aUUSId)
     {
-    iUUSId = aUUSId;
-    }
+	iUUSId = aUUSId;
+	}
 
 // -----------------------------------------------------------------------------
 // Gets the UUS id of the call.
 // -----------------------------------------------------------------------------
 //
 TBuf<KCCPUUSIdSize> CCCECallParameters::UUSId() const 
-    {
-    return iUUSId;
-    }
+	{
+	return iUUSId;
+	}
 
 // -----------------------------------------------------------------------------
 // Sets the bearer of the call.
 // -----------------------------------------------------------------------------
 //
 void CCCECallParameters::SetBearer(TBuf8<KCCEBearerMaxSize> aBearer) 
-    {
-    iBearer = aBearer;
-    }
+	{
+	iBearer = aBearer;
+	}
 
 // -----------------------------------------------------------------------------
 // Gets the bearer of the call.
 // -----------------------------------------------------------------------------
 //
 TBuf8<KCCEBearerMaxSize> CCCECallParameters::Bearer() const 
-    {
-    return iBearer;
-    }
+	{
+	return iBearer;
+	}
 
 // -----------------------------------------------------------------------------
 // Sets the sub address of the dialled phone number.
 // -----------------------------------------------------------------------------
 //
 void CCCECallParameters::SetSubAddress(TBuf<KCCESubAddressMaxSize> aSubAddress) 
-    {
-    iSubAddress = aSubAddress;
-    }
+	{
+	iSubAddress = aSubAddress;
+	}
 
 // -----------------------------------------------------------------------------
 // Gets the sub address of the dialled phone number.
 // -----------------------------------------------------------------------------
 //
 TBuf<KCCESubAddressMaxSize> CCCECallParameters::SubAddress() const 
-    {
-    return iSubAddress;
-    }
+	{
+	return iSubAddress;
+	}
 
 // -----------------------------------------------------------------------------
 // Sets the origin of the call.
 // -----------------------------------------------------------------------------
 //
 void CCCECallParameters::SetOrigin(CCCECallParameters::TCCECallOrigin aCallOrigin) 
-    {
-    iOrigin = aCallOrigin;
-    }
+	{
+	iOrigin = aCallOrigin;
+	}
 
 // -----------------------------------------------------------------------------
 // Gets the origin of the call.
 // -----------------------------------------------------------------------------
 //
 CCCECallParameters::TCCECallOrigin CCCECallParameters::Origin() const 
-    {
-    return iOrigin;
-    }
-
-void CCCECallParameters::SetAlphaId(TBuf<KCCPAlphaIdMaxSize> aAlphaId)
-    {
-    iAlphaId = aAlphaId;
-    }
+	{
+	return iOrigin;
+	}
 
 
-TBuf<KCCPAlphaIdMaxSize> CCCECallParameters::AlphaId() const
-    {
-    return iAlphaId;
-    }
 
 // End of file