summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-03-23 11:43:28 +0100
committerraveit65 <[email protected]>2017-03-23 11:43:28 +0100
commit45f862c6178358e73470296e5793b10c486926c1 (patch)
tree5524c0884ecd0f30f5735da3150dc48505c5114c /src
parent52a3d30957889eb37e65e9c4416dbe0ea79a109c (diff)
downloadcaja-45f862c6178358e73470296e5793b10c486926c1.tar.bz2
caja-45f862c6178358e73470296e5793b10c486926c1.tar.xz
property-browser: don't recast GtkWidget as GtkWidget
Diffstat (limited to 'src')
-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 f89b4937..9b4d708c 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 (GTK_WIDGET (property_browser->details->content_frame));
+ context = gtk_widget_get_style_context (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);