diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-10-22 22:41:50 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-10-22 22:41:50 (GMT) |
commit | 30bc43ca00140bc215d6a1beb81ab5542e68d13b (patch) | |
tree | 205eb23f57545d195e1fcb8141ac80da28409f80 /src/graph/node.h | |
parent | b649c2c01ab407958f3b7057153fb02c9c7d0be1 (diff) |
Supported scrolling internally and thus fixed bugs with big binaries.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@132 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/graph/node.h')
-rw-r--r-- | src/graph/node.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/graph/node.h b/src/graph/node.h index 456e236..4998553 100644 --- a/src/graph/node.h +++ b/src/graph/node.h @@ -25,10 +25,8 @@ #define _GRAPH_NODE_H -#include <gtk/gtkfixed.h> - - #include "../gtkext/gtkbinview.h" +#include "../gtkext/gtkgraphview.h" @@ -59,7 +57,7 @@ GGraphNode *g_graph_node_new(GtkBinView *); char *g_graph_node_register_for_dot(const GGraphNode *, char *); /* Place le morceau de code de l'intermédiaire à l'écran. */ -void g_graph_node_place(const GGraphNode *, GtkFixed *, gint , gint); +void g_graph_node_place(const GGraphNode *, GtkGraphView *, gint , gint); |