The TUI has a few #defines that hold user-visible strings. As these
are only used in a single spot, this patch removes the defines,
preferring direct use of the string where needed. Furthermore, now
the strings are wrapped in _(), which is friendlier for i18n purposes.
gdb/ChangeLog
2019-08-20 Tom Tromey <tom@tromey.com>
* tui/tui-source.h (struct tui_source_window): Update.
* tui/tui-regs.c (tui_show_registers): Update.
* tui/tui-disasm.h (struct tui_disasm_window): Update.
* tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
(NO_REGS_STRING): Remove defines.
+2019-08-20 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-source.h (struct tui_source_window): Update.
+ * tui/tui-regs.c (tui_show_registers): Update.
+ * tui/tui-disasm.h (struct tui_disasm_window): Update.
+ * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
+ (NO_REGS_STRING): Remove defines.
+
2019-08-20 Conrad Meyer <cem@FreeBSD.org>
* remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
/* Constant definitions. */
#define DEFAULT_TAB_LEN 8
-#define NO_SRC_STRING "[ No Source Available ]"
-#define NO_DISASSEM_STRING "[ No Assembly Available ]"
-#define NO_REGS_STRING "[ Register Values Unavailable ]"
#define NO_DATA_STRING "[ No Data Values Displayed ]"
#define SRC_NAME "src"
#define CMD_NAME "cmd"
void erase_source_content () override
{
- do_erase_source_content (NO_DISASSEM_STRING);
+ do_erase_source_content (_("[ No Assembly Available ]"));
}
protected:
else
{
TUI_DATA_WIN->current_group = 0;
- TUI_DATA_WIN->erase_data_content (NO_REGS_STRING);
+ TUI_DATA_WIN->erase_data_content (_("[ Register Values Unavailable ]"));
}
}
void erase_source_content () override
{
- do_erase_source_content (NO_SRC_STRING);
+ do_erase_source_content (_("[ No Source Available ]"));
}
void show_symtab_source (struct gdbarch *, struct symtab *,