summaryrefslogtreecommitdiff
path: root/sw/source/core/crsr/crstrvl1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/crsr/crstrvl1.cxx')
-rw-r--r--sw/source/core/crsr/crstrvl1.cxx56
1 files changed, 28 insertions, 28 deletions
diff --git a/sw/source/core/crsr/crstrvl1.cxx b/sw/source/core/crsr/crstrvl1.cxx
index 699302a7e4e1..1ac7374d12db 100644
--- a/sw/source/core/crsr/crstrvl1.cxx
+++ b/sw/source/core/crsr/crstrvl1.cxx
@@ -21,69 +21,69 @@
#include <viscrs.hxx>
#include <callnk.hxx>
-bool SwCrsrShell::IsStartWord( sal_Int16 nWordType ) const
+bool SwCursorShell::IsStartWord( sal_Int16 nWordType ) const
{
- return m_pCurCrsr->IsStartWord( nWordType );
+ return m_pCurrentCursor->IsStartWord( nWordType );
}
-bool SwCrsrShell::IsEndWord( sal_Int16 nWordType ) const
+bool SwCursorShell::IsEndWord( sal_Int16 nWordType ) const
{
- return m_pCurCrsr->IsEndWord( nWordType );
+ return m_pCurrentCursor->IsEndWord( nWordType );
}
-bool SwCrsrShell::IsInWord( sal_Int16 nWordType ) const
+bool SwCursorShell::IsInWord( sal_Int16 nWordType ) const
{
- return m_pCurCrsr->IsInWord( nWordType );
+ return m_pCurrentCursor->IsInWord( nWordType );
}
-bool SwCrsrShell::IsStartSentence() const
+bool SwCursorShell::IsStartSentence() const
{
- return m_pCurCrsr->IsStartEndSentence( false );
+ return m_pCurrentCursor->IsStartEndSentence( false );
}
-bool SwCrsrShell::IsEndSentence() const
+bool SwCursorShell::IsEndSentence() const
{
- return m_pCurCrsr->IsStartEndSentence( true );
+ return m_pCurrentCursor->IsStartEndSentence( true );
}
-bool SwCrsrShell::GoStartWord()
+bool SwCursorShell::GoStartWord()
{
- return CallCrsrFN( &SwCursor::GoStartWord );
+ return CallCursorFN( &SwCursor::GoStartWord );
}
-bool SwCrsrShell::GoEndWord()
+bool SwCursorShell::GoEndWord()
{
- return CallCrsrFN( &SwCursor::GoEndWord );
+ return CallCursorFN( &SwCursor::GoEndWord );
}
-bool SwCrsrShell::GoNextWord()
+bool SwCursorShell::GoNextWord()
{
- return CallCrsrFN( &SwCursor::GoNextWord );
+ return CallCursorFN( &SwCursor::GoNextWord );
}
-bool SwCrsrShell::GoPrevWord()
+bool SwCursorShell::GoPrevWord()
{
- return CallCrsrFN( &SwCursor::GoPrevWord );
+ return CallCursorFN( &SwCursor::GoPrevWord );
}
-bool SwCrsrShell::GoNextSentence()
+bool SwCursorShell::GoNextSentence()
{
- return CallCrsrFN( &SwCursor::GoNextSentence );
+ return CallCursorFN( &SwCursor::GoNextSentence );
}
-bool SwCrsrShell::GoEndSentence()
+bool SwCursorShell::GoEndSentence()
{
- return CallCrsrFN( &SwCursor::GoEndSentence );
+ return CallCursorFN( &SwCursor::GoEndSentence );
}
-bool SwCrsrShell::GoStartSentence()
+bool SwCursorShell::GoStartSentence()
{
- return CallCrsrFN( &SwCursor::GoStartSentence );
+ return CallCursorFN( &SwCursor::GoStartSentence );
}
-bool SwCrsrShell::SelectWord( const Point* pPt )
+bool SwCursorShell::SelectWord( const Point* pPt )
{
- return m_pCurCrsr->SelectWord( this, pPt );
+ return m_pCurrentCursor->SelectWord( this, pPt );
}
-bool SwCrsrShell::ExpandToSentenceBorders()
+bool SwCursorShell::ExpandToSentenceBorders()
{
- return m_pCurCrsr->ExpandToSentenceBorders();
+ return m_pCurrentCursor->ExpandToSentenceBorders();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */