diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-03-17 11:13:20 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-03-17 11:13:20 +0000 |
commit | 343426b79aac9efd3a6ae6e0ea14821a8689171f (patch) | |
tree | 414c42e6d14fb0d1bc8d6467a8c2a28c4ef83b90 /sw/inc/txtfld.hxx | |
parent | 138f7b2cc41101866c497ac3bd981bc2c90ad8e5 (diff) |
INTEGRATION: CWS os26 (1.2.266); FILE MERGED
2003/12/22 13:20:07 os 1.2.266.1: #114571# aExpand is mutable and Expand() is const, now
Diffstat (limited to 'sw/inc/txtfld.hxx')
-rw-r--r-- | sw/inc/txtfld.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/txtfld.hxx b/sw/inc/txtfld.hxx index 57889bb4c0bb..da1549acbfee 100644 --- a/sw/inc/txtfld.hxx +++ b/sw/inc/txtfld.hxx @@ -2,9 +2,9 @@ * * $RCSfile: txtfld.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2003-06-30 14:58:46 $ + * last change: $Author: obo $ $Date: 2004-03-17 12:13:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,14 +74,14 @@ class SwTxtNode; class SwTxtFld : public SwTxtAttr { - String aExpand; - SwTxtNode *pMyTxtNd; + mutable String aExpand; + SwTxtNode *pMyTxtNd; public: SwTxtFld( const SwFmtFld& rAttr, xub_StrLen nStart ); ~SwTxtFld(); void CopyFld( SwTxtFld *pDest ) const; - void Expand(); + void Expand() const; inline void ExpandAlways(); // erfrage und setze den TxtNode Pointer |