summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Hartmann <gh@openoffice.org>2002-11-27 11:37:52 +0000
committerGregor Hartmann <gh@openoffice.org>2002-11-27 11:37:52 +0000
commit8255d8564f38f1d14e6a7fde2c034b29acc66ed9 (patch)
tree1518e530e1616f0adf1e984993afe5bcc26fe15b
parent88afdb9a9293bb6695fb1cdcd6ef246e741df775 (diff)
#105672#call KeyUp method when typing keys to support Buttons
-rw-r--r--automation/source/server/sta_list.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/automation/source/server/sta_list.cxx b/automation/source/server/sta_list.cxx
index 5bb310006e8d..9ef018d42bd0 100644
--- a/automation/source/server/sta_list.cxx
+++ b/automation/source/server/sta_list.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sta_list.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mh $ $Date: 2002-11-18 15:29:00 $
+ * last change: $Author: gh $ $Date: 2002-11-27 12:37:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -958,6 +958,7 @@ void ImplKeyInput( Window* pWin, KeyEvent &aKEvnt )
{
if ( !Application::CallAccel( aKEvnt.GetKeyCode() ) )
CALL_EVENT_WITH_NOTIFY( EVENT_KEYINPUT, aKEvnt, pWin, KeyInput )
+ CALL_EVENT_WITH_NOTIFY( EVENT_KEYUP, aKEvnt, pWin, KeyUp )
};
void ImplMouseMove( Window* pWin, MouseEvent &aMEvnt )