summaryrefslogtreecommitdiff
path: root/src/graph/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/node.h')
-rw-r--r--src/graph/node.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/graph/node.h b/src/graph/node.h
index 4998553..f8d0078 100644
--- a/src/graph/node.h
+++ b/src/graph/node.h
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* node.h - prototypes pour les éléments de graphiques chez dot
*
- * Copyright (C) 2009 Cyrille Bagard
+ * Copyright (C) 2009-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -25,7 +25,6 @@
#define _GRAPH_NODE_H
-#include "../gtkext/gtkbinview.h"
#include "../gtkext/gtkgraphview.h"
@@ -51,7 +50,7 @@ typedef struct _GGraphNodeClass GGraphNodeClass;
GType g_graph_node_get_type(void);
/* Constitue un intermédiaire entre un noeud dot et du code. */
-GGraphNode *g_graph_node_new(GtkBinView *);
+GGraphNode *g_graph_node_new(GtkWidget *);
/* Déclare l'intermédiaire en tant que noeud pour dot. */
char *g_graph_node_register_for_dot(const GGraphNode *, char *);
@@ -65,7 +64,7 @@ void g_graph_node_place(const GGraphNode *, GtkGraphView *, gint , gint);
/* Recherche un noeud donné dans une série de noeuds. */
-GGraphNode *find_graph_node_by_name(const GGraphNode **, size_t, const char *);
+const GGraphNode *find_graph_node_by_name(GGraphNode **, size_t, const char *);