1.1 --- a/epoc32/include/gsmumsg.inl Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/gsmumsg.inl Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 // All rights reserved.
1.6 // This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -13,9 +13,6 @@
1.16 // Description:
1.17 //
1.18
1.19 -
1.20 -
1.21 -
1.22 /**
1.23 @file
1.24
1.25 @@ -26,7 +23,7 @@
1.26 */
1.27 inline CSmsPDU::TSmsPDUType CSmsMessage::Type() const
1.28 {
1.29 - return iSmsPDU->Type();
1.30 + return SmsPDU().Type();
1.31 }
1.32
1.33
1.34 @@ -169,7 +166,7 @@
1.35 */
1.36 inline TPtrC CSmsMessage::ServiceCenterAddress() const
1.37 {
1.38 - return iSmsPDU->ServiceCenterAddress();
1.39 + return SmsPDU().ServiceCenterAddress();
1.40 }
1.41
1.42
1.43 @@ -180,7 +177,7 @@
1.44 */
1.45 inline void CSmsMessage::SetServiceCenterAddressL(const TDesC& aAddress)
1.46 {
1.47 - iSmsPDU->SetServiceCenterAddressL(aAddress);
1.48 + SmsPDU().SetServiceCenterAddressL(aAddress);
1.49 }
1.50
1.51
1.52 @@ -191,7 +188,7 @@
1.53 */
1.54 inline void CSmsMessage::ParsedServiceCenterAddress(TGsmSmsTelNumber& aParsedAddress) const
1.55 {
1.56 - iSmsPDU->ParsedServiceCenterAddress(aParsedAddress);
1.57 + SmsPDU().ParsedServiceCenterAddress(aParsedAddress);
1.58 }
1.59
1.60
1.61 @@ -202,7 +199,7 @@
1.62 */
1.63 inline void CSmsMessage::SetParsedServiceCenterAddressL(const TGsmSmsTelNumber& aParsedAddress)
1.64 {
1.65 - iSmsPDU->SetParsedServiceCenterAddressL(aParsedAddress);
1.66 + SmsPDU().SetParsedServiceCenterAddressL(aParsedAddress);
1.67 }
1.68
1.69
1.70 @@ -213,7 +210,7 @@
1.71 */
1.72 inline TPtrC CSmsMessage::ToFromAddress() const
1.73 {
1.74 - return iSmsPDU->ToFromAddress();
1.75 + return SmsPDU().ToFromAddress();
1.76 }
1.77
1.78
1.79 @@ -224,7 +221,7 @@
1.80 */
1.81 inline void CSmsMessage::SetToFromAddressL(const TDesC& aAddress)
1.82 {
1.83 - iSmsPDU->SetToFromAddressL(aAddress);
1.84 + SmsPDU().SetToFromAddressL(aAddress);
1.85 }
1.86
1.87
1.88 @@ -235,7 +232,7 @@
1.89 */
1.90 inline void CSmsMessage::ParsedToFromAddress(TGsmSmsTelNumber& aParsedAddress) const
1.91 {
1.92 - iSmsPDU->ParsedToFromAddress(aParsedAddress);
1.93 + SmsPDU().ParsedToFromAddress(aParsedAddress);
1.94 }
1.95
1.96
1.97 @@ -246,7 +243,7 @@
1.98 */
1.99 inline void CSmsMessage::SetParsedToFromAddressL(const TGsmSmsTelNumber& aParsedAddress)
1.100 {
1.101 - iSmsPDU->SetParsedToFromAddressL(aParsedAddress);
1.102 + SmsPDU().SetParsedToFromAddressL(aParsedAddress);
1.103 }
1.104
1.105
1.106 @@ -293,7 +290,7 @@
1.107 */
1.108 inline TBool CSmsMessage::BinaryData() const
1.109 {
1.110 - return iSmsPDU->UserData().IsBinaryData();
1.111 + return SmsPDU().UserData().IsBinaryData();
1.112 }
1.113
1.114