diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-09-09 11:49:29 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-09-09 11:49:49 (GMT) |
commit | 699e2811a9305f871fe9adcb4797461e947cc863 (patch) | |
tree | 62bd5a1e7c055b1469c4949c66a9b319f47526ff /src/gtkext/hexview.c | |
parent | ec71086f6dcf69241b586f1e48e7d656dda11a6c (diff) |
Typo.
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 : - * * * |