diff options
author | Peter Burow <pb@openoffice.org> | 2001-10-25 07:01:10 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-10-25 07:01:10 +0000 |
commit | c03887c46f63246a75f7569eca4e7d5f72f09f91 (patch) | |
tree | 772257a08124c64559c57ce80723b1bcbaa69748 /basctl | |
parent | fed41f87e5a4169e4cef5436eb3e504443d210f8 (diff) |
fix: #92010# support for help keyword (basic ide)
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 437f33052d6d..20fcd2972928 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -2,9 +2,9 @@ * * $RCSfile: baside2b.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: tbe $ $Date: 2001-10-24 10:27:33 $ + * last change: $Author: pb $ $Date: 2001-10-25 08:01:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -369,17 +369,13 @@ void __EXPORT EditorWindow::RequestHelp( const HelpEvent& rHEvt ) // Sollte eigentlich mal aktiviert werden... if ( pEditEngine ) { - /* if ( rHEvt.GetMode() & HELPMODE_CONTEXT ) { String aKeyword = GetWordAtCursor(); - //SfxHelp::ShowHelp( aKeyword, TRUE ); + Application::GetHelp()->Start( aKeyword, this ); bDone = TRUE; } - else - */ - - if ( rHEvt.GetMode() & HELPMODE_QUICK ) + else if ( rHEvt.GetMode() & HELPMODE_QUICK ) { String aHelpText; Point aTopLeft; |