summaryrefslogtreecommitdiff
path: root/gtk/gtktextlayout.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2000-08-31 17:08:45 +0000
committerHavoc Pennington <hp@src.gnome.org>2000-08-31 17:08:45 +0000
commit78500e90453fdc57e9e260c71adc5250d67ca801 (patch)
treea4dd7085d72c2cd7dd9dff36f8011c7c47751345 /gtk/gtktextlayout.h
parent41b5d5d26dec872ec46a5deba4a2357eaca10398 (diff)
downloadgtk+-78500e90453fdc57e9e260c71adc5250d67ca801.tar.gz
Rename GtkTextStyleValues to GtkTextAttributes
2000-08-31 Havoc Pennington <hp@redhat.com> * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, gtk/gtktexttagprivate.h, gtk/gtktextview.c: Rename GtkTextStyleValues to GtkTextAttributes
Diffstat (limited to 'gtk/gtktextlayout.h')
-rw-r--r--gtk/gtktextlayout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktextlayout.h b/gtk/gtktextlayout.h
index 8feeec9b04..79871d3890 100644
--- a/gtk/gtktextlayout.h
+++ b/gtk/gtktextlayout.h
@@ -49,7 +49,7 @@ struct _GtkTextLayout
GtkTextBuffer *buffer;
/* Default style used if no tags override it */
- GtkTextStyleValues *default_style;
+ GtkTextAttributes *default_style;
/* Pango contexts used for creating layouts */
PangoContext *ltr_context;
@@ -58,7 +58,7 @@ struct _GtkTextLayout
/* A cache of one style; this is used to ensure
* we don't constantly regenerate the style
* over long runs with the same style. */
- GtkTextStyleValues *one_style_cache;
+ GtkTextAttributes *one_style_cache;
/* A cache of one line display. Getting the same line
* many times in a row is the most common case.
@@ -146,7 +146,7 @@ GtkTextLayout *gtk_text_layout_new (void);
void gtk_text_layout_set_buffer (GtkTextLayout *layout,
GtkTextBuffer *buffer);
void gtk_text_layout_set_default_style (GtkTextLayout *layout,
- GtkTextStyleValues *values);
+ GtkTextAttributes *values);
void gtk_text_layout_set_contexts (GtkTextLayout *layout,
PangoContext *ltr_context,
PangoContext *rtl_context);