diff options
author | Martin Hunt <hunt@redhat.com> | 2003-03-12 22:09:16 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 2003-03-12 22:09:16 +0000 |
commit | cf57a5e246db1887419f5265f4a003bd6160d325 (patch) | |
tree | 3bdf17cc7bf019c170d56cb4408ad79c9064a5ea /gdb/gdbtk | |
parent | 439bccad32f796d9fa2989ce43675d5a8a6e8be7 (diff) | |
download | gdb-cf57a5e246db1887419f5265f4a003bd6160d325.tar.gz |
2003-03-12 Martin M. Hunt <hunt@redhat.com>
* rhabout.itcl (RHAbout): Fix call
to open_help. We no longer use HTMLViewer.
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r-- | gdb/gdbtk/plugins/rhabout/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbtk/plugins/rhabout/rhabout.itcl | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/gdbtk/plugins/rhabout/ChangeLog b/gdb/gdbtk/plugins/rhabout/ChangeLog index c94af48ddda..8f5ec3a0402 100644 --- a/gdb/gdbtk/plugins/rhabout/ChangeLog +++ b/gdb/gdbtk/plugins/rhabout/ChangeLog @@ -1,3 +1,8 @@ +2003-03-12 Martin M. Hunt <hunt@redhat.com> + + * rhabout.itcl (RHAbout): Fix call + to open_help. We no longer use HTMLViewer. + 2002-08-14 Keith Seitz <keiths@redhat.com> Merged from Red Hat internal branch: diff --git a/gdb/gdbtk/plugins/rhabout/rhabout.itcl b/gdb/gdbtk/plugins/rhabout/rhabout.itcl index bf1cf255a1e..02a83517dfd 100644 --- a/gdb/gdbtk/plugins/rhabout/rhabout.itcl +++ b/gdb/gdbtk/plugins/rhabout/rhabout.itcl @@ -10,7 +10,7 @@ class RHAbout { -underline 1 $menubar add menubutton help "Help" 0 $menubar add command Other "Help Topics" \ - {HtmlViewer::open_help index.html} \ + {open_help index.html} \ -underline 0 $menubar add separator $menubar add command Other "About GDB..." \ @@ -52,7 +52,7 @@ class RHAbout { # pack everything pack $f.image1 $f.m -fill both -expand yes pack $f.stat -expand 1 -fill both - pack $itk_interior + pack $itk_interior # Give our sample window a name window_name "About Red Hat Insight Plug-In" |