diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-11-11 21:22:38 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-11-11 21:22:38 (GMT) |
commit | db934f20598340772f8c0256c8a8119790a1821e (patch) | |
tree | d03e57cc5fc953fc3e7653da74a8c58fd310de5d /src/gtkext/graph | |
parent | 2df715e74d6600ed0a5688a43f6ecd873957326a (diff) |
Prepared the new organization of display widgets.
Diffstat (limited to 'src/gtkext/graph')
-rw-r--r-- | src/gtkext/graph/cluster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gtkext/graph/cluster.c b/src/gtkext/graph/cluster.c index 6ff4b8a..06e06c2 100644 --- a/src/gtkext/graph/cluster.c +++ b/src/gtkext/graph/cluster.c @@ -32,7 +32,7 @@ #include "../gtkblockview.h" #include "../gtkbufferview.h" -#include "../gtkviewpanel.h" +#include "../gtkdisplaypanel.h" #include "../../common/sort.h" @@ -315,9 +315,9 @@ GGraphCluster *g_graph_cluster_new(GLoadedBinary *binary, const GBlockList *list result->view = gtk_block_view_new(); gtk_widget_show(result->view); - gtk_view_panel_attach_binary(GTK_VIEW_PANEL(result->view), binary, BVW_GRAPH); + gtk_display_panel_attach_binary(GTK_DISPLAY_PANEL(result->view), binary, BVW_GRAPH); - gtk_view_panel_show_border(GTK_VIEW_PANEL(result->view), true); + gtk_display_panel_show_border(GTK_DISPLAY_PANEL(result->view), true); /* Restriction au bloc basique */ |