diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-11-13 00:30:05 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-11-13 00:30:05 +0000 |
commit | 549e225c8b373be8e44274a5b2e4700c0411b4e8 (patch) | |
tree | 91a6fe43f08f0edb2aac7283ccb4b7bb1d2d51fc /gtk/gtkentry.h | |
parent | 4835157161463c28869b4964eef06f5d1cd58e7f (diff) | |
download | gtk+-549e225c8b373be8e44274a5b2e4700c0411b4e8.tar.gz |
Fix warning when moving between paragraphs.
Sun Nov 12 19:11:42 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
Fix warning when moving between paragraphs.
* gtk/gtkentry.[ch]: Change move => move_cursor,
delete => delete_from_cursor, insert => insert_at_cursor
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index 765da78f03..33f26baaff 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -106,20 +106,20 @@ struct _GtkEntryClass /* Action signals */ - void (* activate) (GtkEntry *entry); - void (* move) (GtkEntry *entry, - GtkMovementStep step, - gint count, - gboolean extend_selection); - void (* insert) (GtkEntry *entry, - const gchar *str); - void (* delete) (GtkEntry *entry, - GtkDeleteType type, - gint count); - void (* cut_clipboard) (GtkEntry *entry); - void (* copy_clipboard) (GtkEntry *entry); - void (* paste_clipboard) (GtkEntry *entry); - void (* toggle_overwrite) (GtkEntry *entry); + void (* activate) (GtkEntry *entry); + void (* move_cursor) (GtkEntry *entry, + GtkMovementStep step, + gint count, + gboolean extend_selection); + void (* insert_at_cursor) (GtkEntry *entry, + const gchar *str); + void (* delete_from_cursor) (GtkEntry *entry, + GtkDeleteType type, + gint count); + void (* cut_clipboard) (GtkEntry *entry); + void (* copy_clipboard) (GtkEntry *entry); + void (* paste_clipboard) (GtkEntry *entry); + void (* toggle_overwrite) (GtkEntry *entry); }; GtkType gtk_entry_get_type (void) G_GNUC_CONST; |