From 7e2c467e6438184432fbb191b51df7d4cd9cbae8 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Mon, 11 Feb 2013 20:12:32 -0600 Subject: [PATCH] filechooser: Remove some unused code Signed-off-by: Federico Mena Quintero --- gtk/gtkfilechooserdefault.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index 3f900986f1..d8f7ea8d1c 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -281,8 +281,6 @@ static void gtk_file_chooser_default_hierarchy_changed (GtkWidget * static void gtk_file_chooser_default_style_updated (GtkWidget *widget); static void gtk_file_chooser_default_screen_changed (GtkWidget *widget, GdkScreen *previous_screen); -static void gtk_file_chooser_default_size_allocate (GtkWidget *widget, - GtkAllocation *allocation); static gboolean gtk_file_chooser_default_set_current_folder (GtkFileChooser *chooser, GFile *folder, @@ -505,7 +503,6 @@ _gtk_file_chooser_default_class_init (GtkFileChooserDefaultClass *class) widget_class->hierarchy_changed = gtk_file_chooser_default_hierarchy_changed; widget_class->style_updated = gtk_file_chooser_default_style_updated; widget_class->screen_changed = gtk_file_chooser_default_screen_changed; - widget_class->size_allocate = gtk_file_chooser_default_size_allocate; signals[LOCATION_POPUP] = g_signal_new_class_handler (I_("location-popup"), @@ -6003,13 +6000,6 @@ gtk_file_chooser_default_screen_changed (GtkWidget *widget, profile_end ("end", NULL); } -static void -gtk_file_chooser_default_size_allocate (GtkWidget *widget, - GtkAllocation *allocation) -{ - GTK_WIDGET_CLASS (_gtk_file_chooser_default_parent_class)->size_allocate (widget, allocation); -} - static void set_sort_column (GtkFileChooserDefault *impl) {