From ad8cdea4e8677c6c56e0cbc39ecdac7135a83824 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Mon, 30 Oct 2000 15:41:57 +0000 Subject: Change run action signals to be named insert_at_cursor and 2000-10-30 Havoc Pennington * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals to be named insert_at_cursor and delete_at_cursor so C++ can handle them. --- gtk/gtktextview.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'gtk/gtktextview.h') diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h index 3cabdee7a3..fccc7fad45 100644 --- a/gtk/gtktextview.h +++ b/gtk/gtktextview.h @@ -128,9 +128,11 @@ struct _GtkTextViewClass { void (* move) (GtkTextView *text_view, GtkMovementStep step, gint count, gboolean extend_selection); /* move the "anchor" (what Emacs calls the mark) to the cursor position */ void (* set_anchor) (GtkTextView *text_view); - /* Deletions */ - void (* insert) (GtkTextView *text_view, const gchar *str); - void (* delete) (GtkTextView *text_view, GtkDeleteType type, gint count); + + /* Edits */ + void (* insert_at_cursor) (GtkTextView *text_view, const gchar *str); + void (* delete_at_cursor) (GtkTextView *text_view, GtkDeleteType type, gint count); + /* cut copy paste */ void (* cut_clipboard) (GtkTextView *text_view); void (* copy_clipboard) (GtkTextView *text_view); -- cgit v1.2.1