diff options
Diffstat (limited to 'widgets/e-text.h')
-rw-r--r-- | widgets/e-text.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/widgets/e-text.h b/widgets/e-text.h index de7d28fd72..11a7a42375 100644 --- a/widgets/e-text.h +++ b/widgets/e-text.h @@ -161,7 +161,12 @@ struct _EText { ETextEventProcessor *tep; /* Text Event Processor */ - GtkWidget *invisible; /* For selection handling. */ + GtkWidget *invisible; /* For selection handling */ + gboolean has_selection; /* TRUE if we have the selection */ + gchar *primary_selection; /* Primary selection text */ + gint primary_length; /* Primary selection text length */ + gchar *clipboard_selection; /* Clipboard selection text */ + gint clipboard_length; /* Clipboard selection text length*/ }; struct _ETextClass { |