From 64cc5f2eaaaf1f27a41f900113edde77ceb1210d Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 31 May 2016 18:08:45 +0300 Subject: GTK+2: fix build errors after last commits --- src/caja-information-panel.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/caja-information-panel.c') diff --git a/src/caja-information-panel.c b/src/caja-information-panel.c index ec4e6964..fa4632d0 100644 --- a/src/caja-information-panel.c +++ b/src/caja-information-panel.c @@ -210,7 +210,11 @@ 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; +#if GTK_CHECK_VERSION (3, 0, 0) widget_class->style_updated = caja_information_panel_style_updated; +#else + widget_class->style_set = caja_information_panel_style_set; +#endif /* add the "location changed" signal */ signals[LOCATION_CHANGED] = g_signal_new -- cgit v1.2.1