summaryrefslogtreecommitdiff
path: root/src/panels/panel.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-11 02:20:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-11 02:20:30 (GMT)
commit486f0bf0a27ffed3e9fde2f183974ae029b45c54 (patch)
tree8840eaab0629f83e7501506b91101ce4f2d42a5d /src/panels/panel.c
parent6ebdbfbca9e7bc34fe0f280e4a6a65c24c5003e9 (diff)
Defined new panel definitions for the editor GUI.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@223 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panels/panel.c')
-rw-r--r--src/panels/panel.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/panels/panel.c b/src/panels/panel.c
index 53fab8f..5922fe5 100644
--- a/src/panels/panel.c
+++ b/src/panels/panel.c
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* panels.h - gestion des différents panneaux
*
- * Copyright (C) 2009-2010 Cyrille Bagard
+ * Copyright (C) 2009-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -28,7 +28,6 @@
#include "breaks.h"
#include "glimpse.h"
#include "panel-int.h"
-#include "symbols.h"
#include "../gtkext/gtkdockpanel.h"
@@ -147,8 +146,8 @@ void init_internal_panels(void)
panel = g_breaks_panel_new();
panels_list_add_tail(panel, &panels_list);
- panel = g_symbols_panel_new();
- panels_list_add_tail(panel, &panels_list);
+ //panel = g_symbols_panel_new();
+ //panels_list_add_tail(panel, &panels_list);
panel = g_glimpse_panel_new();
panels_list_add_tail(panel, &panels_list);
@@ -234,7 +233,6 @@ void notify_panels_of_view_change(GtkViewPanel *panel, bool same)
-#include "log.h"
#include "registers.h"
#include "strings.h"
@@ -258,7 +256,7 @@ static GtkWidget *panel_list[PNT_COUNT];
void init_panels(GObject *ref)
{
- panel_list[PNT_LOG] = build_log_panel();
+ //panel_list[PNT_LOG] = build_log_panel();
panel_list[PNT_REGISTERS] = build_registers_panel();
panel_list[PNT_STRINGS] = build_strings_panel(ref);