diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-08-09 18:12:27 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-08-09 18:12:27 (GMT) |
commit | 5cd25c4adfe0426520a51a76de3f77c77cfa4b8e (patch) | |
tree | 396514971fb78e81b7bb55c9cd3331d87b45ca9a /src/panel/panels.c | |
parent | d02deb2425d6559c357bdd00e1c0fb05f35d5fc9 (diff) |
Reorganized the way formats are handled (Java and PE got disabled, Dwarf is empty).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@105 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panel/panels.c')
-rw-r--r-- | src/panel/panels.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/panel/panels.c b/src/panel/panels.c index 39adc10..9363578 100644 --- a/src/panel/panels.c +++ b/src/panel/panels.c @@ -27,6 +27,7 @@ #include "log.h" #include "registers.h" +#include "strings.h" #include "symbols.h" @@ -52,6 +53,7 @@ void init_panels(GObject *ref) panel_list[PNT_LOG] = build_log_panel(); panel_list[PNT_REGISTERS] = build_registers_panel(); panel_list[PNT_SYMBOLS] = build_symbols_panel(ref); + panel_list[PNT_STRINGS] = build_strings_panel(ref); } |