diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-01-17 17:49:23 +0000 |
---|---|---|
committer | Chris Wilson <cpwilson@src.gnome.org> | 2007-01-17 17:49:23 +0000 |
commit | 9e9d2c65c1687d10d3d83ab13ecbe203ba36ae18 (patch) | |
tree | b225c764b2c2d6681c45a764f13366c78297163b /src/vteglyph.h | |
parent | 7c070ed56f33e131f618b5929fe9dbb0e6a27d76 (diff) |
As part of Bug 397439.
2007-01-17 Chris Wilson <chris@chris-wilson.co.uk>
As part of Bug 397439.
* src/interpret.c: (main):
* src/iso2022.c: (_vte_iso2022_fragment_input),
(_vte_iso2022_process), (main):
* src/vte.c: (vte_terminal_match_contents_refresh),
(vte_terminal_process_incoming), (vte_terminal_init),
(vte_terminal_set_word_chars):
* src/vteaccess.c:
(vte_terminal_accessible_update_private_data_if_needed):
* src/vtefc.c: (_vte_fc_patterns_from_pango_font_desc):
* src/vtefc.h:
* src/vteglyph.c: (_vte_glyph_cache_new), (_vte_glyph_cache_free),
(_vte_glyph_cache_set_font_description):
* src/vteglyph.h:
* src/vteregex.c: (_vte_regex_sort_matches):
* src/vtexft.c: (_vte_xft_font_open), (_vte_xft_font_close),
(_vte_xft_font_for_char):
s/g_array_new(TRUE, TRUE/g_array_new(FALSE, FALSE/
All uses of GArray respect their lengths and do not
zero-termination or untouched members to be cleared.
svn path=/trunk/; revision=1434
Diffstat (limited to 'src/vteglyph.h')
-rw-r--r-- | src/vteglyph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vteglyph.h b/src/vteglyph.h index bf4d794..96af383 100644 --- a/src/vteglyph.h +++ b/src/vteglyph.h @@ -54,7 +54,7 @@ struct _vte_glyph { }; struct _vte_glyph_cache { - GArray *patterns; + GPtrArray *patterns; GList *faces; GTree *cache; gint ft_load_flags; |