diff -r 7d48bed6ce0c -r 987c9837762f convergedcallengine/cce/src/cccecallparameters.cpp --- 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 aUUSId) { - iUUSId = aUUSId; - } + iUUSId = aUUSId; + } // ----------------------------------------------------------------------------- // Gets the UUS id of the call. // ----------------------------------------------------------------------------- // TBuf CCCECallParameters::UUSId() const - { - return iUUSId; - } + { + return iUUSId; + } // ----------------------------------------------------------------------------- // Sets the bearer of the call. // ----------------------------------------------------------------------------- // void CCCECallParameters::SetBearer(TBuf8 aBearer) - { - iBearer = aBearer; - } + { + iBearer = aBearer; + } // ----------------------------------------------------------------------------- // Gets the bearer of the call. // ----------------------------------------------------------------------------- // TBuf8 CCCECallParameters::Bearer() const - { - return iBearer; - } + { + return iBearer; + } // ----------------------------------------------------------------------------- // Sets the sub address of the dialled phone number. // ----------------------------------------------------------------------------- // void CCCECallParameters::SetSubAddress(TBuf aSubAddress) - { - iSubAddress = aSubAddress; - } + { + iSubAddress = aSubAddress; + } // ----------------------------------------------------------------------------- // Gets the sub address of the dialled phone number. // ----------------------------------------------------------------------------- // TBuf 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 aAlphaId) - { - iAlphaId = aAlphaId; - } + { + return iOrigin; + } -TBuf CCCECallParameters::AlphaId() const - { - return iAlphaId; - } // End of file