summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-05-16 11:30:23 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-05-16 11:30:23 +0000
commit47732098e8a4b3552b0bb9a10570b28d12c729d0 (patch)
tree0c8ce7c596c049f62b6a81a57df7575b1f0180d9 /vcl
parentcdd4633cbec0b3081bf575b7749989648bc3adec (diff)
#98264# avoid member access after possible delete in keyhandler
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/toolbox.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 6f5756fa0648..51d12c6da443 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: toolbox.cxx,v $
*
- * $Revision: 1.41 $
+ * $Revision: 1.42 $
*
- * last change: $Author: ssa $ $Date: 2002-05-16 11:22:58 $
+ * last change: $Author: ssa $ $Date: 2002-05-16 12:30:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -4828,10 +4828,10 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
}
}
+ mnKeyModifier = 0;
+
if( bForwardKey )
DockingWindow::KeyInput( rKEvt );
-
- mnKeyModifier = 0;
}
// -----------------------------------------------------------------------