* tuiSourceWin.h (tuiEraseAllSourceContent): Don't declare.
(tuiShowAllExecInfosContent): Likewise. * tuiSourceWin.c (tuiEraseAllSourceContent): Remove. (tuiShowAllExecInfosContent): Remove. (tuiAllocSourceBuffer): Remove unused locals.
This commit is contained in:
parent
7563e053c3
commit
335fc5a319
3 changed files with 10 additions and 35 deletions
|
@ -1,3 +1,11 @@
|
|||
2002-08-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* tuiSourceWin.h (tuiEraseAllSourceContent): Don't declare.
|
||||
(tuiShowAllExecInfosContent): Likewise.
|
||||
* tuiSourceWin.c (tuiEraseAllSourceContent): Remove.
|
||||
(tuiShowAllExecInfosContent): Remove.
|
||||
(tuiAllocSourceBuffer): Remove unused locals.
|
||||
|
||||
2002-08-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* tuiStack.c (tui_update_command): Rename _tuiUpdateLocation_command
|
||||
|
|
|
@ -302,22 +302,6 @@ tuiEraseSourceContent (TuiWinInfoPtr winInfo, int displayPrompt)
|
|||
} /* tuiEraseSourceContent */
|
||||
|
||||
|
||||
/*
|
||||
** tuiEraseAllSourceContent().
|
||||
*/
|
||||
void
|
||||
tuiEraseAllSourceWinsContent (int displayPrompt)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < (sourceWindows ())->count; i++)
|
||||
tuiEraseSourceContent ((TuiWinInfoPtr) (sourceWindows ())->list[i],
|
||||
displayPrompt);
|
||||
|
||||
return;
|
||||
} /* tuiEraseAllSourceWinsContent */
|
||||
|
||||
|
||||
/* Redraw the complete line of a source or disassembly window. */
|
||||
static void
|
||||
tui_show_source_line (TuiWinInfoPtr winInfo, int lineno)
|
||||
|
@ -606,21 +590,6 @@ tuiShowExecInfoContent (TuiWinInfoPtr winInfo)
|
|||
} /* tuiShowExecInfoContent */
|
||||
|
||||
|
||||
/*
|
||||
** tuiShowAllExecInfosContent()
|
||||
*/
|
||||
void
|
||||
tuiShowAllExecInfosContent (void)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < (sourceWindows ())->count; i++)
|
||||
tuiShowExecInfoContent ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
||||
|
||||
return;
|
||||
} /* tuiShowAllExecInfosContent */
|
||||
|
||||
|
||||
/*
|
||||
** tuiEraseExecInfoContent().
|
||||
*/
|
||||
|
@ -676,8 +645,8 @@ tuiUpdateAllExecInfos (void)
|
|||
TuiStatus
|
||||
tuiAllocSourceBuffer (TuiWinInfoPtr winInfo)
|
||||
{
|
||||
register char *srcLine, *srcLineBuf;
|
||||
register int i, lineWidth, c, maxLines;
|
||||
register char *srcLineBuf;
|
||||
register int i, lineWidth, maxLines;
|
||||
TuiStatus ret = TUI_FAILURE;
|
||||
|
||||
maxLines = winInfo->generic.height; /* less the highlight box */
|
||||
|
|
|
@ -32,14 +32,12 @@ extern void tuiUpdateSourceWindowsWithLine (struct symtab *, int);
|
|||
extern void tuiUpdateSourceWindowsFromLocator (void);
|
||||
extern void tuiClearSourceContent (TuiWinInfoPtr, int);
|
||||
extern void tuiEraseSourceContent (TuiWinInfoPtr, int);
|
||||
extern void tuiEraseAllSourceWinsContent (int);
|
||||
extern void tuiSetSourceContentNil (TuiWinInfoPtr, char *);
|
||||
extern void tuiShowSourceContent (TuiWinInfoPtr);
|
||||
extern void tuiHorizontalSourceScroll (TuiWinInfoPtr, TuiScrollDirection,
|
||||
int);
|
||||
extern TuiStatus tuiSetExecInfoContent (TuiWinInfoPtr);
|
||||
extern void tuiShowExecInfoContent (TuiWinInfoPtr);
|
||||
extern void tuiShowAllExecInfosContent (void);
|
||||
extern void tuiEraseExecInfoContent (TuiWinInfoPtr);
|
||||
extern void tuiEraseAllExecInfosContent (void);
|
||||
extern void tuiClearExecInfoContent (TuiWinInfoPtr);
|
||||
|
|
Loading…
Reference in a new issue