summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkgraphview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtkext/gtkgraphview.h')
-rw-r--r--src/gtkext/gtkgraphview.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gtkext/gtkgraphview.h b/src/gtkext/gtkgraphview.h
index 3706343..9e66fe8 100644
--- a/src/gtkext/gtkgraphview.h
+++ b/src/gtkext/gtkgraphview.h
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* gtkgraphview.h - prototypes pour l'affichage de morceaux de code sous forme graphique
*
- * Copyright (C) 2009 Cyrille Bagard
+ * Copyright (C) 2009-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -40,19 +40,18 @@
#define GTK_GRAPH_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_GRAPH_VIEW, GtkGraphViewClass))
-
+/* Composant d'affichage sous forme graphique (instance) */
typedef struct _GtkGraphView GtkGraphView;
-
+/* Composant d'affichage sous forme graphique (classe) */
typedef struct _GtkGraphViewClass GtkGraphViewClass;
-
/* Détermine le type du composant d'affichage en graphique. */
GType gtk_graph_view_get_type(void);
/* Crée un nouveau composant pour l'affichage en graphique. */
-GtkWidget* gtk_graph_view_new(void);
+GtkWidget *gtk_graph_view_new(void);
/* Place une vue sous forme de bloc dans le graphique. */
void gtk_graph_view_put(GtkGraphView *, GtkWidget *, gint, gint);