diff options
author | Michael Natterer <mitch@gimp.org> | 2010-10-20 16:58:18 +0200 |
---|---|---|
committer | Michael Natterer <mitch@gimp.org> | 2010-10-20 17:02:38 +0200 |
commit | c2f29f2cefd7d880b1c1357070c8444a1fbb7b33 (patch) | |
tree | 78b8b28e367462ef98fcb800b5a66582d68240fe /gtk/gtktextview.h | |
parent | ef9a6f205cc4a3a6c0d03c24a5b1e5e1b5157191 (diff) | |
download | gtk+-c2f29f2cefd7d880b1c1357070c8444a1fbb7b33.tar.gz |
gtk: clean up GtkWidget signals
- add slots for damage-event, move-focus and keynav-failed
- reorder signals a bit so related stuff is grouped together
- some indentation fixes in the GtkWidgetClass
- remove the move-focus compat hack from GtkTextView
- turn the move-focus compat hack in GtkWindow into properly
implementing GtkWidget::move-focus()
Diffstat (limited to 'gtk/gtktextview.h')
-rw-r--r-- | gtk/gtktextview.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h index 703b0d4d7d..21760303ba 100644 --- a/gtk/gtktextview.h +++ b/gtk/gtktextview.h @@ -106,13 +106,6 @@ struct _GtkTextViewClass /* overwrite */ void (* toggle_overwrite) (GtkTextView *text_view); - /* as of GTK+ 2.12 the "move-focus" signal has been moved to GtkWidget, - * so this is merley a virtual function now. Overriding it in subclasses - * continues to work though. - */ - void (* move_focus) (GtkTextView *text_view, - GtkDirectionType direction); - /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); |