sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: inline CParaFormatLayer* CParaFormatLayer::CloneL()const sl@0: /** Constructs and returns a new CParaFormatLayer with identical formatting to sl@0: the current layer. Note that the function does not copy the original layer's sl@0: based-on link - the new layer's based-on link is set to NULL, so that the sl@0: two layers may not have the same effective formatting. sl@0: sl@0: @return A new paragraph format layer cloned from the current layer. */ sl@0: {return STATIC_CAST(CParaFormatLayer*,DoCloneL());} sl@0: sl@0: sl@0: sl@0: sl@0: inline CCharFormatLayer* CCharFormatLayer::CloneL()const sl@0: /** Constructs and returns a new CCharFormatLayer with identical formatting to sl@0: the current layer. Note that the function does not copy the original layer's sl@0: based-on link - the new layer's based-on link is set to NULL, so that the sl@0: two layers may not have the same effective formatting. sl@0: sl@0: @return A new character format layer cloned from the current layer. */ sl@0: {return STATIC_CAST(CCharFormatLayer*,DoCloneL());}