diff options
author | Mathias Bauer <mba@openoffice.org> | 2001-11-06 08:25:33 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2001-11-06 08:25:33 +0000 |
commit | c4475c7f176f7d6b469460f5fe5627863305e2e3 (patch) | |
tree | 8de3e0974038a9a667756ed2a80c8763caea9384 | |
parent | 7dbdf521ae09982b1121e2680a2a47765f7ebb62 (diff) |
#84711#: use all document functions when executing keystrokes
-rw-r--r-- | sfx2/source/view/topfrm.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/view/topfrm.cxx b/sfx2/source/view/topfrm.cxx index 6997774c93c4..4d2ce8a16de8 100644 --- a/sfx2/source/view/topfrm.cxx +++ b/sfx2/source/view/topfrm.cxx @@ -2,9 +2,9 @@ * * $RCSfile: topfrm.cxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: mba $ $Date: 2001-11-02 16:45:24 $ + * last change: $Author: mba $ $Date: 2001-11-06 09:25:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -214,7 +214,7 @@ long SfxTopWindow_Impl::Notify( NotifyEvent& rNEvt ) } else if( rNEvt.GetType() == EVENT_KEYINPUT ) { - if ( pView->GetViewShell()->GlobalKeyInput_Impl( *rNEvt.GetKeyEvent() ) ) + if ( pView->GetViewShell()->KeyInput( *rNEvt.GetKeyEvent() ) ) return TRUE; } else if ( rNEvt.GetType() == EVENT_EXECUTEDIALOG ) |