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: TBool CEditableText::HasChanged()const sl@0: /** Tests whether the editable text object has been changed by an operation on sl@0: it, as set by SetHasChanged(). sl@0: sl@0: @return ETrue if a change has occurred to the text object. EFalse if there sl@0: has been no change. */ sl@0: {return iHasChanged;} sl@0: sl@0: sl@0: TBool CPlainText::FieldSetPresent()const sl@0: {return (iFieldSet.IsPtr() && iFieldSet.AsPtr()!=NULL);} sl@0: sl@0: sl@0: void CPlainText::ConsumeAdornmentL(RReadStream& aStream) sl@0: { sl@0: TStreamId id; sl@0: aStream>> id; sl@0: } sl@0: sl@0: sl@0: TUid CPlainText::UidFromStreamL(RReadStream& aStream) sl@0: { sl@0: TUid uid; sl@0: aStream>> uid; sl@0: return uid; sl@0: }