diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-18 14:41:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-18 14:41:49 +0000 |
commit | cfa8cfb8147a45dcf504df709210dfe192fea057 (patch) | |
tree | 267930694eb19143330159fa5019b671b8ae029e | |
parent | 84745345651a8e2425969cdb8fd2f301e9c2efb2 (diff) |
#92924#: constness
-rw-r--r-- | sw/inc/ftnidx.hxx | 6 | ||||
-rw-r--r-- | sw/source/core/doc/ftnidx.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/ftnidx.hxx b/sw/inc/ftnidx.hxx index 58a23fd715..1240fd9e4b 100644 --- a/sw/inc/ftnidx.hxx +++ b/sw/inc/ftnidx.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ftnidx.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:14:26 $ + * last change: $Author: hr $ $Date: 2001-10-18 15:41:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -83,7 +83,7 @@ class SwFtnIdxs : public _SwFtnIdxs public: SwFtnIdxs() {} - void UpdateFtn( SwNodeIndex& rStt ); // ab Pos. alle Updaten + void UpdateFtn( const SwNodeIndex& rStt ); // ab Pos. alle Updaten void UpdateAllFtn(); // alle Fussnoten updaten void UpdateFtnInSections(); diff --git a/sw/source/core/doc/ftnidx.cxx b/sw/source/core/doc/ftnidx.cxx index cd1ac5e3f7..6131d6cd08 100644 --- a/sw/source/core/doc/ftnidx.cxx +++ b/sw/source/core/doc/ftnidx.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ftnidx.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-19 00:08:16 $ + * last change: $Author: hr $ $Date: 2001-10-18 15:40:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -139,7 +139,7 @@ BOOL _SwFtnIdxs::Seek_Entry( const SwTxtFtnPtr rSrch, USHORT* pFndPos ) const } -void SwFtnIdxs::UpdateFtn( SwNodeIndex& rStt ) +void SwFtnIdxs::UpdateFtn( const SwNodeIndex& rStt ) { if( !Count() ) return; |