summaryrefslogtreecommitdiff
path: root/src/caja-property-browser.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-06-29 08:44:38 +0200
committerraveit65 <[email protected]>2017-06-29 08:44:38 +0200
commit615db83f0024bbf491f97b0d9b03192d5a268a0c (patch)
tree633fe49ea8fbdf8c13181d840a7f8f9f7b6e2f0f /src/caja-property-browser.c
parentbd441d4c61d6e4e6c8e4987d0d2b4b995c815b14 (diff)
downloadcaja-615db83f0024bbf491f97b0d9b03192d5a268a0c.tar.bz2
caja-615db83f0024bbf491f97b0d9b03192d5a268a0c.tar.xz
Revert "property-browser: don't recast GtkWidget as GtkWidget"
This reverts commit 45f862c6178358e73470296e5793b10c486926c1. We revert prevoius commit too.
Diffstat (limited to 'src/caja-property-browser.c')
-rw-r--r--src/caja-property-browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-property-browser.c b/src/caja-property-browser.c
index 9b4d708c..f89b4937 100644
--- a/src/caja-property-browser.c
+++ b/src/caja-property-browser.c
@@ -2189,7 +2189,7 @@ caja_property_browser_update_contents (CajaPropertyBrowser *property_browser)
/* allocate a new container, with a scrollwindow and viewport */
property_browser->details->content_frame = gtk_scrolled_window_new (NULL, NULL);
- context = gtk_widget_get_style_context (property_browser->details->content_frame);
+ context = gtk_widget_get_style_context (GTK_WIDGET (property_browser->details->content_frame));
gtk_style_context_add_class (context, "frame");
gtk_widget_set_vexpand (property_browser->details->content_frame, TRUE);
viewport = gtk_viewport_new (NULL, NULL);