OSDN Git Service

* tui.c (strcat_to_buf): Use const char* for source item.
authorciceron <ciceron>
Sat, 24 Aug 2002 17:04:33 +0000 (17:04 +0000)
committerciceron <ciceron>
Sat, 24 Aug 2002 17:04:33 +0000 (17:04 +0000)
(tui_enable): Update the windows if there is a selected frame.
* tui.h (strcat_to_buf): Update prototype.
(strcat_to_buf_with_fmt): Remove.

gdb/tui/ChangeLog
gdb/tui/tui.c
gdb/tui/tui.h

index 32df100..14e400e 100644 (file)
@@ -1,5 +1,12 @@
 2002-08-24  Stephane Carrez  <stcarrez@nerim.fr>
 
+       * tui.c (strcat_to_buf): Use const char* for source item.
+       (tui_enable): Update the windows if there is a selected frame.
+       * tui.h (strcat_to_buf): Update prototype.
+       (strcat_to_buf_with_fmt): Remove.
+
+2002-08-24  Stephane Carrez  <stcarrez@nerim.fr>
+
        * tuiWin.c (tui_update_gdb_sizes): New function to tell gdb what
        is the size of command window.
        (tuiResizeAll): Call it instead of init_page_info.
index 8ead02f..8bf4776 100644 (file)
@@ -261,6 +261,9 @@ tui_enable (void)
 
   tui_version = 1;
   tui_active = 1;
+  if (selected_frame)
+     tuiShowFrameInfo (selected_frame);
+
   refresh ();
   tui_update_gdb_sizes ();
 }
@@ -327,7 +330,7 @@ tuiGetLowDisassemblyAddress (CORE_ADDR low, CORE_ADDR pc)
 }
 
 void
-strcat_to_buf (char *buf, int buflen, char *itemToAdd)
+strcat_to_buf (char *buf, int buflen, const char *itemToAdd)
 {
   if (itemToAdd != (char *) NULL && buf != (char *) NULL)
     {
index d250208..b2ed4aa 100644 (file)
@@ -48,8 +48,7 @@ Opaque (*OpaqueFuncPtr) (va_list);
  */
      typedef OpaqueFuncPtr TuiOpaqueFuncPtr;
 
-extern void strcat_to_buf (char *, int, char *);
-extern void strcat_to_buf_with_fmt (char *, int, char *, ...);
+extern void strcat_to_buf (char *, int, const char *);
 
 /* Types of error returns */
      typedef enum