diff options
Diffstat (limited to 'src/analysis/line-int.h')
-rw-r--r-- | src/analysis/line-int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/line-int.h b/src/analysis/line-int.h index ea8bce0..cf70695 100644 --- a/src/analysis/line-int.h +++ b/src/analysis/line-int.h @@ -36,7 +36,7 @@ typedef void (* get_bin_len_fc) (GRenderingLine *, off_t *); /* Méthode de mise à jour d'une ligne de représentation. */ -typedef void (* refresh_markup_fc) (GRenderingLine *, LinesMainOwner); +typedef void (* refresh_markup_fc) (GRenderingLine *, MainRendering); /* Ligne de représentation générique (instance) */ @@ -57,10 +57,10 @@ struct _GRenderingLine GRenderingLine *to; /* Eventuelle ligne visée */ InstructionLinkType link_type; /* Type de visée */ - PangoLayout *layout[LMO_COUNT]; /* Moteur de rendu du code/txt */ + PangoLayout *layout[MRD_COUNT]; /* Moteur de rendu du code/txt */ get_bin_len_fc get_bin_len; /* Nbre d'octets représentés */ - off_t max_bin_len[LMO_COUNT]; /* Nombre global maximal */ + off_t max_bin_len[MRD_COUNT]; /* Nombre global maximal */ refresh_markup_fc refresh_markup; /* Reconstruit la représentat° */ |