diff options
author | Havoc Pennington <hp@redhat.com> | 2000-10-30 15:41:57 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-10-30 15:41:57 +0000 |
commit | ad8cdea4e8677c6c56e0cbc39ecdac7135a83824 (patch) | |
tree | 9d3fd2e515a94555b769cf1c939cceef726bbbcd /gtk/gtktextview.h | |
parent | d556aaa210582eb1d2edb41096d73206329ba536 (diff) | |
download | gtk+-ad8cdea4e8677c6c56e0cbc39ecdac7135a83824.tar.gz |
Change run action signals to be named insert_at_cursor and
2000-10-30 Havoc Pennington <hp@redhat.com>
* 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.
Diffstat (limited to 'gtk/gtktextview.h')
-rw-r--r-- | gtk/gtktextview.h | 8 |
1 files changed, 5 insertions, 3 deletions
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); |