summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-11-02 15:45:24 +0000
committerMathias Bauer <mba@openoffice.org>2001-11-02 15:45:24 +0000
commit7da6e248d40dfa9d15c3f6c934e04e2363758c3e (patch)
treede7591db17cbb4681371d6d1bfa844f81c7f6641
parent3fbb95b6a0c9ef09e22f70529c8c60c681c20534 (diff)
#94033#: wrong KeyInput Notify
-rw-r--r--sfx2/source/view/topfrm.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/view/topfrm.cxx b/sfx2/source/view/topfrm.cxx
index e37723002ecc..6997774c93c4 100644
--- a/sfx2/source/view/topfrm.cxx
+++ b/sfx2/source/view/topfrm.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: topfrm.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: mba $ $Date: 2001-11-01 17:08:14 $
+ * last change: $Author: mba $ $Date: 2001-11-02 16:45:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -211,11 +211,11 @@ long SfxTopWindow_Impl::Notify( NotifyEvent& rNEvt )
if ( nHelpId )
SfxHelp::OpenHelpAgent( pFrame, nHelpId );
- return sal_True;
}
else if( rNEvt.GetType() == EVENT_KEYINPUT )
{
- return pView->GetViewShell()->GlobalKeyInput_Impl( *rNEvt.GetKeyEvent() );
+ if ( pView->GetViewShell()->GlobalKeyInput_Impl( *rNEvt.GetKeyEvent() ) )
+ return TRUE;
}
else if ( rNEvt.GetType() == EVENT_EXECUTEDIALOG )
{