Filling in the gaps.

-owt
This commit is contained in:
Owen Taylor 1998-02-27 16:17:07 +00:00
parent 50cc709f77
commit a36ffb12a5

View File

@ -197,6 +197,13 @@ gint gtk_text_backward_delete (GtkText *text,
gint gtk_text_forward_delete (GtkText *text,
guint nchars);
gchar * gtk_text_get_chars (GtkText *text,
guint index,
guint nchars);
#define GTK_TEXT_INDEX(t, index) \
((index) < (t)->gap_position ? (t)->text[index] : \
(t)->text[(index) + (t)->gap_size])
#ifdef __cplusplus
}