summaryrefslogtreecommitdiff
path: root/vcl/source/window/keyevent.cxx
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-04-08 15:57:28 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-04-08 15:57:28 +0000
commit001f8e5f78ed9238b1ea29f9f58234d09a25db33 (patch)
tree2311e6b9e4fd1ee3a7e3be228f97f36244731a82 /vcl/source/window/keyevent.cxx
parent5e20ccf37c64efdb07b8db68fa5d27f07e96a1e6 (diff)
#97013# prepare keyboard invocation of quickhelp
Diffstat (limited to 'vcl/source/window/keyevent.cxx')
-rw-r--r--vcl/source/window/keyevent.cxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/vcl/source/window/keyevent.cxx b/vcl/source/window/keyevent.cxx
index d64fde695e79..6d112914ffc4 100644
--- a/vcl/source/window/keyevent.cxx
+++ b/vcl/source/window/keyevent.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: keyevent.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cp $ $Date: 2002-02-27 12:30:16 $
+ * last change: $Author: ssa $ $Date: 2002-04-08 16:57:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,6 +59,9 @@
*
************************************************************************/
+#ifndef _DEBUG_HXX
+#include <tools/debug.hxx>
+#endif
#include <event.hxx>
KeyEvent::KeyEvent (const KeyEvent& rKeyEvent) :
@@ -102,3 +105,12 @@ KeyEvent KeyEvent::LogicalTextDirectionality (TextDirectionality eMode) const
return aClone;
}
+
+// -------------------------------------------------------
+
+const Point& HelpEvent::GetMousePosPixel() const
+{
+ DBG_ASSERT( !mbKeyboardActivated, "Keyboard help has no mouse position !");
+ return maPos;
+}
+