summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/inc/unocrsr.hxx8
-rw-r--r--sw/source/core/crsr/swcrsr.cxx6
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