forked from AuroraMiddleware/gtk
text: Remove empty root() implementation
This commit is contained in:
parent
1bf79a4dae
commit
ff1fb4f10d
@ -339,7 +339,6 @@ static void gtk_text_direction_changed (GtkWidget *widget,
|
|||||||
GtkTextDirection previous_dir);
|
GtkTextDirection previous_dir);
|
||||||
static void gtk_text_state_flags_changed (GtkWidget *widget,
|
static void gtk_text_state_flags_changed (GtkWidget *widget,
|
||||||
GtkStateFlags previous_state);
|
GtkStateFlags previous_state);
|
||||||
static void gtk_text_root (GtkWidget *widget);
|
|
||||||
|
|
||||||
static gboolean gtk_text_drag_drop (GtkDropTarget *dest,
|
static gboolean gtk_text_drag_drop (GtkDropTarget *dest,
|
||||||
const GValue *value,
|
const GValue *value,
|
||||||
@ -726,7 +725,6 @@ gtk_text_class_init (GtkTextClass *class)
|
|||||||
widget_class->css_changed = gtk_text_css_changed;
|
widget_class->css_changed = gtk_text_css_changed;
|
||||||
widget_class->direction_changed = gtk_text_direction_changed;
|
widget_class->direction_changed = gtk_text_direction_changed;
|
||||||
widget_class->state_flags_changed = gtk_text_state_flags_changed;
|
widget_class->state_flags_changed = gtk_text_state_flags_changed;
|
||||||
widget_class->root = gtk_text_root;
|
|
||||||
widget_class->mnemonic_activate = gtk_text_mnemonic_activate;
|
widget_class->mnemonic_activate = gtk_text_mnemonic_activate;
|
||||||
|
|
||||||
class->move_cursor = gtk_text_move_cursor;
|
class->move_cursor = gtk_text_move_cursor;
|
||||||
@ -3297,12 +3295,6 @@ gtk_text_state_flags_changed (GtkWidget *widget,
|
|||||||
gtk_text_update_cached_style_values (self);
|
gtk_text_update_cached_style_values (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
gtk_text_root (GtkWidget *widget)
|
|
||||||
{
|
|
||||||
GTK_WIDGET_CLASS (gtk_text_parent_class)->root (widget);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* GtkEditable method implementations
|
/* GtkEditable method implementations
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user