diff options
author | Oliver Specht <os@openoffice.org> | 2000-10-26 08:27:42 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2000-10-26 08:27:42 +0000 |
commit | d90529e8e3871a58e4d76377051b162debe5aa76 (patch) | |
tree | 4df7d6badab427df8674b8a932439a0ee329f2ee | |
parent | 82b5a3ac2c33cc143f08c472d7bda067d45897ca (diff) |
missing S inserted into Is/Set(S)kipHiddenSections
-rw-r--r-- | sw/inc/unocrsr.hxx | 8 | ||||
-rw-r--r-- | sw/source/core/crsr/swcrsr.cxx | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/unocrsr.hxx b/sw/inc/unocrsr.hxx index 8e2f621cb744..bc0f440d07e9 100644 --- a/sw/inc/unocrsr.hxx +++ b/sw/inc/unocrsr.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unocrsr.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jp $ $Date: 2000-10-25 16:02:15 $ + * last change: $Author: os $ $Date: 2000-10-26 09:23:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -98,9 +98,9 @@ public: void SetSkipOverProtectSections( BOOL bFlag ) { bSkipOverProtectSections = bFlag; } - BOOL IskipOverHiddenSections() const + BOOL IsSkipOverHiddenSections() const { return bSkipOverHiddenSections; } - void SetkipOverHiddenSections( BOOL bFlag ) + void SetSkipOverHiddenSections( BOOL bFlag ) { bSkipOverHiddenSections = bFlag; } DECL_FIXEDMEMPOOL_NEWDEL( SwUnoCrsr ) diff --git a/sw/source/core/crsr/swcrsr.cxx b/sw/source/core/crsr/swcrsr.cxx index 2877746a9408..8812b4e65acd 100644 --- a/sw/source/core/crsr/swcrsr.cxx +++ b/sw/source/core/crsr/swcrsr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: swcrsr.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jp $ $Date: 2000-10-25 16:01:32 $ + * last change: $Author: os $ $Date: 2000-10-26 09:27:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -274,7 +274,7 @@ FASTBOOL SwCursor::IsSelOvr( int eFlags ) SwUnoCrsr* pUnoCrsr = *this; if( pUnoCrsr ) { - bSkipOverHiddenSections = pUnoCrsr->IskipOverHiddenSections(); + bSkipOverHiddenSections = pUnoCrsr->IsSkipOverHiddenSections(); bSkipOverProtectSections = pUnoCrsr->IsSkipOverProtectSections(); } else |