summaryrefslogtreecommitdiff
path: root/src/format/known-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/known-int.h')
-rw-r--r--src/format/known-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format/known-int.h b/src/format/known-int.h
index e4d3bd6..7b79e50 100644
--- a/src/format/known-int.h
+++ b/src/format/known-int.h
@@ -30,10 +30,10 @@
/* Indique la désignation interne du format. */
-typedef const char * (* known_get_name_fc) (const GKnownFormat *);
+typedef char * (* known_get_key_fc) (const GKnownFormat *);
/* Fournit une description humaine du format. */
-typedef const char * (* known_get_desc_fc) (const GKnownFormat *);
+typedef char * (* known_get_desc_fc) (const GKnownFormat *);
/*Assure l'interprétation d'un format en différé. */
typedef bool (* known_analyze_fc) (GKnownFormat *, wgroup_id_t, GtkStatusStack *);
@@ -53,7 +53,7 @@ struct _GKnownFormatClass
{
GObjectClass parent; /* A laisser en premier */
- known_get_name_fc get_name; /* Désignation interne */
+ known_get_key_fc get_key; /* Désignation interne */
known_get_desc_fc get_desc; /* Désignation humaine */
known_analyze_fc analyze; /* Interprétation du format */