summaryrefslogtreecommitdiff
path: root/sw/source/uibase/wrtsh/wrtundo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/wrtsh/wrtundo.cxx')
-rw-r--r--sw/source/uibase/wrtsh/wrtundo.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/uibase/wrtsh/wrtundo.cxx b/sw/source/uibase/wrtsh/wrtundo.cxx
index 1756fdd53b22..d8e7ed8498a0 100644
--- a/sw/source/uibase/wrtsh/wrtundo.cxx
+++ b/sw/source/uibase/wrtsh/wrtundo.cxx
@@ -62,27 +62,27 @@ void SwWrtShell::Do( DoType eDoType, sal_uInt16 nCnt )
DoUndo(bSaveDoesUndo);
bool bCreateXSelection = false;
- const bool bFrmSelected = IsFrmSelected() || IsObjSelected();
+ const bool bFrameSelected = IsFrameSelected() || IsObjSelected();
if ( IsSelection() )
{
- if ( bFrmSelected )
- UnSelectFrm();
+ if ( bFrameSelected )
+ UnSelectFrame();
// Set the function pointer for canceling the selection at the
// cursor position.
m_fnKillSel = &SwWrtShell::ResetSelect;
- m_fnSetCrsr = &SwWrtShell::SetCrsrKillSel;
+ m_fnSetCursor = &SwWrtShell::SetCursorKillSel;
bCreateXSelection = true;
}
- else if ( bFrmSelected )
+ else if ( bFrameSelected )
{
- EnterSelFrmMode();
+ EnterSelFrameMode();
bCreateXSelection = true;
}
else if( (CNT_GRF | CNT_OLE ) & GetCntType() )
{
SelectObj( GetCharRect().Pos() );
- EnterSelFrmMode();
+ EnterSelFrameMode();
bCreateXSelection = true;
}