diff options
author | Armin Weiss <aw@openoffice.org> | 2002-05-06 09:07:21 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2002-05-06 09:07:21 +0000 |
commit | dd62a01202c2e8da0e6a1b110877f42d5e8a50a3 (patch) | |
tree | 1334a6ed30d88ee8bde0413dffda99a7076b5279 | |
parent | 0fe9d97ac490a113e17bb19ede8dcba6327e353b (diff) |
#98994# handle Mod1 and Mod2 to get travelling running on different systems
-rw-r--r-- | sc/source/ui/drawfunc/fudraw.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/source/ui/drawfunc/fudraw.cxx b/sc/source/ui/drawfunc/fudraw.cxx index f35160d1232c..b6f38ae9f3c0 100644 --- a/sc/source/ui/drawfunc/fudraw.cxx +++ b/sc/source/ui/drawfunc/fudraw.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fudraw.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: nn $ $Date: 2002-04-19 12:16:07 $ + * last change: $Author: aw $ $Date: 2002-05-06 10:07:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -338,7 +338,8 @@ BOOL __EXPORT FuDraw::KeyInput(const KeyEvent& rKEvt) bReturn = TRUE; } - if(rKEvt.GetKeyCode().IsMod1()) + // #98994# handle Mod1 and Mod2 to get travelling running on different systems + if(rKEvt.GetKeyCode().IsMod1() || rKEvt.GetKeyCode().IsMod2()) { // #97016# II do something with a selected handle? const SdrHdlList& rHdlList = pView->GetHdlList(); |