diff options
author | Stephan Bergmann <sb@openoffice.org> | 2002-07-09 13:49:04 +0000 |
---|---|---|
committer | Stephan Bergmann <sb@openoffice.org> | 2002-07-09 13:49:04 +0000 |
commit | 2b2d7e39fdfda0f5f9fddc8c5cf211cd5467446c (patch) | |
tree | 8fd77a1fd529d6f60ae9e047c045b3898b9c13aa /basctl | |
parent | 1d8201fcb58320a9aaa023b52528e6784b38b19b (diff) |
#99399# Added help IDs for some IDE controls.
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/inc/helpid.hrc | 7 | ||||
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 7 | ||||
-rw-r--r-- | basctl/source/basicide/basidesh.src | 5 | ||||
-rw-r--r-- | basctl/util/hidother.src | 6 |
4 files changed, 16 insertions, 9 deletions
diff --git a/basctl/inc/helpid.hrc b/basctl/inc/helpid.hrc index 3a59c5ddd4a3..b49723e2e120 100644 --- a/basctl/inc/helpid.hrc +++ b/basctl/inc/helpid.hrc @@ -2,9 +2,9 @@ * * $RCSfile: helpid.hrc,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tbe $ $Date: 2002-05-02 13:40:32 $ + * last change: $Author: sb $ $Date: 2002-07-09 14:48:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,6 +106,9 @@ #define HID_BASICIDE_WATCHWINDOW (HID_BASICIDE_START + 29) #define HID_BASICIDE_STACKWINDOW (HID_BASICIDE_START + 30) #define HID_BASICIDE_TABBAR (HID_BASICIDE_START + 31) +#define HID_BASICIDE_WATCHWINDOW_EDIT (HID_BASICIDE_START + 32) +#define HID_BASICIDE_WATCHWINDOW_LIST (HID_BASICIDE_START + 33) +#define HID_BASICIDE_STACKWINDOW_LIST (HID_BASICIDE_START + 34) #endif diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index cf49d4fdb0fd..e143d6ed41a1 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -2,9 +2,9 @@ * * $RCSfile: baside2b.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: sb $ $Date: 2002-07-09 13:25:21 $ + * last change: $Author: sb $ $Date: 2002-07-09 14:49:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1322,6 +1322,7 @@ WatchWindow::WatchWindow( Window* pParent ) : { nVirtToolBoxHeight = aXEdit.GetSizePixel().Height() + 7; + aTreeListBox.SetHelpId(HID_BASICIDE_WATCHWINDOW_LIST); aTreeListBox.EnableInplaceEditing( TRUE ); aTreeListBox.SetSelectHdl( LINK( this, WatchWindow, TreeListHdl ) ); aTreeListBox.SetPosPixel( Point( DWBORDER, nVirtToolBoxHeight ) ); @@ -1494,7 +1495,7 @@ StackWindow::StackWindow( Window* pParent ) : aTreeListBox( this, WB_BORDER | WB_3DLOOK | WB_HSCROLL | WB_TABSTOP ), aStackStr( IDEResId( RID_STR_STACK ) ) { - + aTreeListBox.SetHelpId(HID_BASICIDE_STACKWINDOW_LIST); aTreeListBox.SetPosPixel( Point( DWBORDER, nVirtToolBoxHeight ) ); aTreeListBox.SetHighlightRange(); aTreeListBox.Show(); diff --git a/basctl/source/basicide/basidesh.src b/basctl/source/basicide/basidesh.src index c0b60a00b4ee..391383c5efdd 100644 --- a/basctl/source/basicide/basidesh.src +++ b/basctl/source/basicide/basidesh.src @@ -2,9 +2,9 @@ * * $RCSfile: basidesh.src,v $ * - * $Revision: 1.70 $ + * $Revision: 1.71 $ * - * last change: $Author: sb $ $Date: 2002-07-08 07:47:42 $ + * last change: $Author: sb $ $Date: 2002-07-09 14:49:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1806,6 +1806,7 @@ String RID_STR_SEARCHALLMODULES }; Edit RID_EDT_WATCHEDIT { + HelpId = HID_BASICIDE_WATCHWINDOW_EDIT ; Border = TRUE ; SvLook = TRUE ; Size = MAP_APPFONT ( 80 , 12 ) ; diff --git a/basctl/util/hidother.src b/basctl/util/hidother.src index 346404b0a0f9..ea3a31a8d6dd 100644 --- a/basctl/util/hidother.src +++ b/basctl/util/hidother.src @@ -2,9 +2,9 @@ * * $RCSfile: hidother.src,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tbe $ $Date: 2002-05-02 13:41:52 $ + * last change: $Author: sb $ $Date: 2002-07-09 14:48:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -73,3 +73,5 @@ hidspecial HID_BASICIDE_BREAKPOINTWINDOW { HelpID = HID_BASICIDE_BREAKPOINTWI hidspecial HID_BASICIDE_WATCHWINDOW { HelpID = HID_BASICIDE_WATCHWINDOW; }; hidspecial HID_BASICIDE_STACKWINDOW { HelpID = HID_BASICIDE_STACKWINDOW; }; hidspecial HID_BASICIDE_TABBAR { HelpID = HID_BASICIDE_TABBAR; }; +hidspecial HID_BASICIDE_WATCHWINDOW_LIST { HelpID = HID_BASICIDE_WATCHWINDOW_LIST; }; +hidspecial HID_BASICIDE_STACKWINDOW_LIST { HelpID = HID_BASICIDE_STACKWINDOW_LIST; }; |