summaryrefslogtreecommitdiff
path: root/src/arch/operand-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r--src/arch/operand-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h
index 603a39d..697a896 100644
--- a/src/arch/operand-int.h
+++ b/src/arch/operand-int.h
@@ -41,9 +41,6 @@ struct _GArchOperand
{
GObject parent; /* A laisser en premier */
- operand_compare_fc compare; /* Comparaison d'opérandes */
- operand_print_fc print; /* Texte humain équivalent */
-
char *alt_text; /* Eventuel texte alternatif */
size_t alt_len; /* Taille de ce texte */
RenderingTagType alt_tag; /* Type de rendu */
@@ -56,6 +53,9 @@ struct _GArchOperandClass
{
GObjectClass parent; /* A laisser en premier */
+ operand_compare_fc compare; /* Comparaison d'opérandes */
+ operand_print_fc print; /* Texte humain équivalent */
+
};