diff options
Diffstat (limited to 'src/gtkext/hexview.c')
-rw-r--r-- | src/gtkext/hexview.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gtkext/hexview.c b/src/gtkext/hexview.c index 6a78ce6..6df1140 100644 --- a/src/gtkext/hexview.c +++ b/src/gtkext/hexview.c @@ -37,10 +37,10 @@ /* ------------------------- BASES D'UN COMPOSANT GRAPHIQUE ------------------------- */ -/* Procède à l'initialisation de l'afficheur générique. */ +/* Initialise la classe des afficheurs de tampons bruts. */ static void gtk_hex_view_class_init(GtkHexViewClass *); -/* Procède à l'initialisation de l'afficheur générique. */ +/* Initialise une instance d'afficheur de tampons bruts. */ static void gtk_hex_view_init(GtkHexView *); /* Supprime toutes les références externes. */ @@ -90,7 +90,7 @@ G_DEFINE_TYPE(GtkHexView, gtk_hex_view, GTK_TYPE_BUFFER_VIEW); * * * Paramètres : class = classe GTK à initialiser. * * * -* Description : Procède à l'initialisation de l'afficheur générique. * +* Description : Initialise la classe des afficheurs de tampons bruts. * * * * Retour : - * * * @@ -131,7 +131,7 @@ static void gtk_hex_view_class_init(GtkHexViewClass *class) * * * Paramètres : view = composant GTK à initialiser. * * * -* Description : Procède à l'initialisation de l'afficheur générique. * +* Description : Initialise une instance d'afficheur de tampons bruts. * * * * Retour : - * * * |