diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-28 23:16:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-28 23:16:50 +0000 |
commit | 47d3492a0e582ea7490fe7f31a2cef77e4534cc8 (patch) | |
tree | aedace62ed9f7f22156a92079306a451e082fefb /gdb/tui/tui.c | |
parent | 98c6820a655019c4f039971ddbc0753ae501a6e0 (diff) | |
download | gdb-47d3492a0e582ea7490fe7f31a2cef77e4534cc8.zip gdb-47d3492a0e582ea7490fe7f31a2cef77e4534cc8.tar.gz gdb-47d3492a0e582ea7490fe7f31a2cef77e4534cc8.tar.bz2 |
2004-01-28 Andrew Cagney <cagney@redhat.com>
* tui/tui-stack.h: Update copyright.
(struct frame_info): Add opaque declaration.
(tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
(tui_show_locator_content): Rename tuiShowLocatorContent.
(tui_show_frame_info): Rename tuiShowFrameInfo.
* tui/tui-stack.c: Update copyright. Update references.
* tui/tui-winsource.c: Update references.
* tui/tui-win.c: Update references.
* tui/tui-layout.c: Update references.
* tui/tui-hooks.c: Update copyright, update references.
* tui/tui.c: Update copyright, update references.
* tui/tui-disasm.c: Update references.
Diffstat (limited to 'gdb/tui/tui.c')
-rw-r--r-- | gdb/tui/tui.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 74fd7ae..83ac52b 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -1,7 +1,7 @@ /* General functions for the WDB TUI. - Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, - Inc. + Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software + Foundation, Inc. Contributed by Hewlett-Packard Company. @@ -299,7 +299,7 @@ tui_set_key_mode (enum tui_key_mode mode) tui_current_key_mode = mode; rl_set_keymap (mode == tui_single_key_mode ? tui_keymap : tui_readline_standard_keymap); - tuiShowLocatorContent (); + tui_show_locator_content (); } /* Initialize readline and configure the keymap for the switching @@ -388,7 +388,7 @@ tui_enable (void) setTermWidthTo (COLS); def_prog_mode (); - tuiShowFrameInfo (0); + tui_show_frame_info (0); tui_set_layout (SRC_COMMAND, TUI_UNDEFINED_REGS); tuiSetWinFocusTo (srcWin); keypad (cmdWin->generic.handle, TRUE); @@ -413,7 +413,7 @@ tui_enable (void) tui_active = 1; if (deprecated_selected_frame) - tuiShowFrameInfo (deprecated_selected_frame); + tui_show_frame_info (deprecated_selected_frame); /* Restore TUI keymap. */ tui_set_key_mode (tui_current_key_mode); @@ -566,7 +566,7 @@ tui_show_source (const char *file, int line) tui_add_win_to_layout (SRC_WIN); tuiUpdateSourceWindowsWithLine (cursal.symtab, line); - tuiUpdateLocatorFilename (file); + tui_update_locator_filename (file); } void |