Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // 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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 inline CParaFormatLayer* CParaFormatLayer::CloneL()const
20 /** Constructs and returns a new CParaFormatLayer with identical formatting to
21 the current layer. Note that the function does not copy the original layer's
22 based-on link - the new layer's based-on link is set to NULL, so that the
23 two layers may not have the same effective formatting.
25 @return A new paragraph format layer cloned from the current layer. */
26 {return STATIC_CAST(CParaFormatLayer*,DoCloneL());}
31 inline CCharFormatLayer* CCharFormatLayer::CloneL()const
32 /** Constructs and returns a new CCharFormatLayer with identical formatting to
33 the current layer. Note that the function does not copy the original layer's
34 based-on link - the new layer's based-on link is set to NULL, so that the
35 two layers may not have the same effective formatting.
37 @return A new character format layer cloned from the current layer. */
38 {return STATIC_CAST(CCharFormatLayer*,DoCloneL());}