From ec7d9e561ff8a802a917d05e2c294436cb07e19f Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 6 Feb 2004 23:55:34 +0000 Subject: 2004-02-06 Andrew Cagney * tui/tui-wingeneral.h: Update copyright. (m_allBeVisible): Delete macro. (m_allBeInvisible): Delete macro. (struct tui_gen_win_info): Declare. (struct tui_win_info): Declare. (tui_unhighlight_win): Rename unhighlightWin. (tui_make_visible, tui_make_invisible): Replace makeVisible. (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible. (tui_make_window): Rename makeWindow. (tui_copy_win): Rename copyWin. (tui_box_win): Rename boxWin. (tui_highlight_win): Rename highlightWin. (tui_check_and_display_highlight_if_needed): Rename checkAndDisplayHighlightIfNeeded. (tui_refresh_all): Rename refreshAll. (tui_delete_win): Rename tuiDelwin. (tui_refresh_win): Rename tuiRefreshWin. * tui/tui-wingeneral.c (make_visible): Rename makeVisible. (tui_make_visible, tui_make_invisible): New functions. (tui_make_all_visible, tui_make_all_invisible): New functions. (make_all_visible): Rename makeAllVisible. * tui/tui-winsource.c, tui/tui-windata.c: Update references. * tui/tui-data.c, tui/tui-winsource.c: Update references. * tui/tui-windata.c, tui/tui-win.c: Update references. * tui/tui-regs.c, tui/tui-layout.c: Update references. * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo. --- gdb/tui/tui-windata.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/tui/tui-windata.c') diff --git a/gdb/tui/tui-windata.c b/gdb/tui/tui-windata.c index f504f7f..42775de 100644 --- a/gdb/tui/tui-windata.c +++ b/gdb/tui/tui-windata.c @@ -112,7 +112,7 @@ tuiDeleteDataContentWindows (void) { dataItemWinPtr = &((TuiWinContent) dataWin->generic.content)[i]->whichElement.dataWindow; - tuiDelwin (dataItemWinPtr->handle); + tui_delete_win (dataItemWinPtr->handle); dataItemWinPtr->handle = (WINDOW *) NULL; dataItemWinPtr->isVisible = FALSE; } @@ -125,7 +125,7 @@ void tuiEraseDataContent (char *prompt) { werase (dataWin->generic.handle); - checkAndDisplayHighlightIfNeeded (dataWin); + tui_check_and_display_highlight_if_needed (dataWin); if (prompt != (char *) NULL) { int halfWidth = (dataWin->generic.width - 2) / 2; @@ -160,7 +160,7 @@ tuiDisplayAllData (void) { tuiEraseDataContent ((char *) NULL); tuiDeleteDataContentWindows (); - checkAndDisplayHighlightIfNeeded (dataWin); + tui_check_and_display_highlight_if_needed (dataWin); tui_display_registers_from (0); /* ** Then display the other data @@ -188,7 +188,7 @@ tuiDisplayDataFromLine (int lineNo) if (lineNo < 0) _lineNo = 0; - checkAndDisplayHighlightIfNeeded (dataWin); + tui_check_and_display_highlight_if_needed (dataWin); /* there is no general data, force regs to display (if there are any) */ if (dataWin->detail.dataDisplayInfo.dataContentCount <= 0) -- cgit v1.1