diff options
author | jp <jp@openoffice.org> | 2002-02-01 11:51:13 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2002-02-01 11:51:13 +0000 |
commit | 76a098487d016175fef55fb1a83466c069452ae9 (patch) | |
tree | f985604aa03bdf85a4550d4843a45f18448dbe21 /sw/source/ui/fldui/fldedt.cxx | |
parent | ab98c273c1b18a41b34203ba8052d34e3f9fa7e3 (diff) |
Task #92291#: add new character skip modifier
Diffstat (limited to 'sw/source/ui/fldui/fldedt.cxx')
-rw-r--r-- | sw/source/ui/fldui/fldedt.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sw/source/ui/fldui/fldedt.cxx b/sw/source/ui/fldui/fldedt.cxx index df1b263f335d..189274061b42 100644 --- a/sw/source/ui/fldui/fldedt.cxx +++ b/sw/source/ui/fldui/fldedt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fldedt.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: os $ $Date: 2000-11-13 12:07:14 $ + * last change: $Author: jp $ $Date: 2002-02-01 12:44:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -126,6 +126,9 @@ #ifndef _FLDEDT_HXX #include <fldedt.hxx> #endif +#ifndef _CRSSKIP_HXX +#include <crsskip.hxx> +#endif #ifndef _CMDID_H @@ -160,7 +163,7 @@ SwFldEditDlg::SwFldEditDlg(SwView& rVw) : return; pSh->SetCareWin(this); - pSh->Right(TRUE); + pSh->Right(CRSR_SKIP_CHARS, TRUE, 1, FALSE ); pSh->SwapPam(); USHORT nGroup = aMgr.GetGroup(FALSE, pCurFld->GetTypeId(), pCurFld->GetSubType()); @@ -367,7 +370,7 @@ IMPL_LINK( SwFldEditDlg, NextPrevHdl, Button *, pButton ) rMgr.GoNextPrev( bNext, pOldTyp ); pCurFld = rMgr.GetCurFld(); - pSh->Right(TRUE); + pSh->Right(CRSR_SKIP_CHARS, TRUE, 1, FALSE ); pSh->SwapPam(); USHORT nGroup = rMgr.GetGroup(FALSE, pCurFld->GetTypeId(), pCurFld->GetSubType()); |