diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2018-10-23 21:16:35 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2018-10-23 21:16:35 (GMT) | 
| commit | 4563123b929366e93973a1d6aa3269bd7b3f47d6 (patch) | |
| tree | 0ffd8d788adb9228c137254f8817c4397a280b16 /src/glibext/gbuffercache.c | |
| parent | acbd3ac3899bd1230097df2f1afea6c3690a5cb8 (diff) | |
Indented code labels in the assembly views.
Diffstat (limited to 'src/glibext/gbuffercache.c')
| -rw-r--r-- | src/glibext/gbuffercache.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/glibext/gbuffercache.c b/src/glibext/gbuffercache.c index 866d696..e4ddf06 100644 --- a/src/glibext/gbuffercache.c +++ b/src/glibext/gbuffercache.c @@ -1466,6 +1466,7 @@ void g_buffer_cache_collect_widths(GBufferCache *cache, size_t index, line_width  *                last     = dernière ligne à dessiner.                        *  *                area     = position et surface à traiter.                    *  *                options  = règles d'affichage des colonnes modulables.       * +*                offsets  = décalages supplémentaires à appliquer.            *  *                selected = ordonnée d'une ligne sélectionnée ou NULL.        *  *                list     = liste de contenus à mettre en évidence.           *  *                                                                             * @@ -1477,7 +1478,7 @@ void g_buffer_cache_collect_widths(GBufferCache *cache, size_t index, line_width  *                                                                             *  ******************************************************************************/ -void g_buffer_cache_draw(const GBufferCache *cache, cairo_t *cr, size_t first, size_t last, const cairo_rectangle_int_t *area, const GDisplayOptions *options, const gint *selected, const segcnt_list *list) +void g_buffer_cache_draw(const GBufferCache *cache, cairo_t *cr, size_t first, size_t last, const cairo_rectangle_int_t *area, const GDisplayOptions *options, const line_width_summary *offsets, const gint *selected, const segcnt_list *list)  {      GBufferCacheClass *class;               /* Classe des tampons          */      gint y;                                 /* Point de départ en ordonnée */ @@ -1515,7 +1516,7 @@ void g_buffer_cache_draw(const GBufferCache *cache, cairo_t *cr, size_t first, s              line = get_cache_info_line(info, i, cache->content); -            g_buffer_line_draw(line, cr, &summary, class->text_pos, y, options, list); +            g_buffer_line_draw(line, cr, &summary, class->text_pos, y, options, offsets, list);              g_object_unref(G_OBJECT(line)); | 
