summaryrefslogtreecommitdiff
path: root/sw/source/ui/shells/txtcrsr.cxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2002-12-12 15:37:20 +0000
committerOliver Specht <os@openoffice.org>2002-12-12 15:37:20 +0000
commita9a45bd7044d93daacfc0d6e8e9cb16a6b5bfd36 (patch)
tree1e18182913571c34a2930f29db30cb4bcb187c1e /sw/source/ui/shells/txtcrsr.cxx
parentc98d47158327c12ae4910979b7d4aa1dfe00bec8 (diff)
#106222# Request::Done() calls added
Diffstat (limited to 'sw/source/ui/shells/txtcrsr.cxx')
-rw-r--r--sw/source/ui/shells/txtcrsr.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/source/ui/shells/txtcrsr.cxx b/sw/source/ui/shells/txtcrsr.cxx
index 6c874f0214..587611f2d4 100644
--- a/sw/source/ui/shells/txtcrsr.cxx
+++ b/sw/source/ui/shells/txtcrsr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtcrsr.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: fme $ $Date: 2002-12-02 10:29:56 $
+ * last change: $Author: os $ $Date: 2002-12-12 16:36:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -227,6 +227,7 @@ void SwTextShell::ExecMovePage(SfxRequest &rReq)
case FN_END_OF_PAGE: rSh.EndPg ( FN_END_OF_PAGE_SEL == nSlot ); break;
default: ASSERT(FALSE, falscher Dispatcher); return;
}
+ rReq.Done();
}
@@ -243,6 +244,7 @@ void SwTextShell::ExecMoveCol(SfxRequest &rReq)
case FN_END_OF_PREV_COLUMN: rSh.EndOfPrevColumn ( FALSE ); break;
default: ASSERT(FALSE, falscher Dispatcher); return;
}
+ rReq.Done();
}
void SwTextShell::ExecMoveLingu(SfxRequest &rReq)
@@ -285,6 +287,7 @@ void SwTextShell::ExecMoveLingu(SfxRequest &rReq)
break;
default: ASSERT(FALSE, falscher Dispatcher); return;
}
+ rReq.Done();
}
void SwTextShell::ExecMoveMisc(SfxRequest &rReq)
@@ -376,6 +379,7 @@ void SwTextShell::ExecMoveMisc(SfxRequest &rReq)
if( bSetRetVal )
rReq.SetReturnValue(SfxBoolItem( nSlot, bRet ));
+ rReq.Done();
}