summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/basctl/source/basicide/baside2.cxx b/basctl/source/basicide/baside2.cxx
index c9719ffd13e4..d8312b51d5af 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -948,7 +948,11 @@ void ModulWindow::ExecuteCommand (SfxRequest& rReq)
case SID_DELETE:
{
KeyEvent aFakeDelete( 0, KEY_DELETE );
- GetEditView()->KeyInput( aFakeDelete );
+ bool bDone = GetEditView()->KeyInput( aFakeDelete );
+ if (!bDone)
+ {
+ BaseWindow::KeyInput(aFakeDelete);
+ }
break;
}
case SID_SELECTALL: