diff options
author | Mario Sanchez Prada <msanchez@igalia.com> | 2012-08-10 18:03:17 +0200 |
---|---|---|
committer | Mario Sanchez Prada <msanchez@igalia.com> | 2012-08-10 18:09:06 +0200 |
commit | 58a9244518d43065aa6c74e40e753d5ae0d88fc6 (patch) | |
tree | e15242d974e3559e53220d65e4284e97462f3ce6 /gtk/gtkentryprivate.h | |
parent | 66810c1e7f7ee4bf8c8707961564c1f03b5df2fe (diff) | |
download | gtk+-58a9244518d43065aa6c74e40e753d5ae0d88fc6.tar.gz |
Export gtk_entry_get_display_text() as a private function through
gtkentryprivate.h, so we can use it from gtkentryaccessible.c
https://bugzilla.gnome.org/show_bug.cgi?id=681591
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r-- | gtk/gtkentryprivate.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h index b087839e35..aefada571c 100644 --- a/gtk/gtkentryprivate.h +++ b/gtk/gtkentryprivate.h @@ -77,8 +77,11 @@ void _gtk_entry_completion_popup (GtkEntryCompletion *completion, GdkDevice *device); void _gtk_entry_completion_popdown (GtkEntryCompletion *completion); -void _gtk_entry_get_borders (GtkEntry *entry, - GtkBorder *borders); +gchar* _gtk_entry_get_display_text (GtkEntry *entry, + gint start_pos, + gint end_pos); +void _gtk_entry_get_border (GtkEntry *entry, + GtkBorder *borders); void _gtk_entry_reset_im_context (GtkEntry *entry); GtkIMContext* _gtk_entry_get_im_context (GtkEntry *entry); void _gtk_entry_set_is_cell_renderer (GtkEntry *entry, |