diff options
author | raveit65 <[email protected]> | 2016-05-30 22:52:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-05-30 22:52:08 +0200 |
commit | abec93de17fb483764ab27c5c781204cef561261 (patch) | |
tree | 618b2382b6d4d892fe0248fb54de79369d75b818 /src/caja-information-panel.c | |
parent | 469c6d88a8a37bf09b9b75d610f53cdf90629168 (diff) | |
download | caja-abec93de17fb483764ab27c5c781204cef561261.tar.bz2 caja-abec93de17fb483764ab27c5c781204cef561261.tar.xz |
GTK+3 sidebars and caja-places: port style_set to style_updated
Diffstat (limited to 'src/caja-information-panel.c')
-rw-r--r-- | src/caja-information-panel.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/caja-information-panel.c b/src/caja-information-panel.c index c90e6b76..ec4e6964 100644 --- a/src/caja-information-panel.c +++ b/src/caja-information-panel.c @@ -82,8 +82,7 @@ static void caja_information_panel_drag_data_received (GtkWidget guint time); static void caja_information_panel_read_defaults (CajaInformationPanel *information_panel); #if GTK_CHECK_VERSION (3, 0, 0) -static void caja_information_panel_style_set (GtkWidget *widget, - GtkStyleContext *previous_style); +static void caja_information_panel_style_updated (GtkWidget *widget); #else static void caja_information_panel_style_set (GtkWidget *widget, GtkStyle *previous_style); @@ -211,7 +210,7 @@ caja_information_panel_class_init (CajaInformationPanelClass *klass) widget_class->drag_data_received = caja_information_panel_drag_data_received; widget_class->button_press_event = caja_information_panel_press_event; - widget_class->style_set = caja_information_panel_style_set; + widget_class->style_updated = caja_information_panel_style_updated; /* add the "location changed" signal */ signals[LOCATION_CHANGED] = g_signal_new @@ -1180,7 +1179,7 @@ title_changed_callback (CajaWindowInfo *window, /* ::style_set handler for the information_panel */ static void #if GTK_CHECK_VERSION (3, 0, 0) -caja_information_panel_style_set (GtkWidget *widget, GtkStyleContext *previous_style) +caja_information_panel_style_updated (GtkWidget *widget) #else caja_information_panel_style_set (GtkWidget *widget, GtkStyle *previous_style) #endif |