summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2016-02-15 11:05:41 +0100
committerCarlos Soriano <csoriano@gnome.org>2016-02-15 11:52:00 +0100
commitf9bc36a6bbb905c53750deed481d380e31b8b662 (patch)
tree77a99e008660feb037cb9389af44058999ac55ae
parent86d176db984e6ee19ef8e090fc373e096abd82e6 (diff)
downloadnautilus-f9bc36a6bbb905c53750deed481d380e31b8b662.tar.gz
window: fix missing casting
https://bugzilla.gnome.org/show_bug.cgi?id=761965
-rw-r--r--src/nautilus-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 3a4aea311..29e499b04 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -2446,7 +2446,7 @@ nautilus_window_init (NautilusWindow *window)
* specific styling for nautilus without affecting other gtk+ applications.
* This was a request by some theme authors.
*/
- gtk_style_context_add_class (gtk_widget_get_style_context (window),
+ gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (window)),
"nautilus-window");
window_group = gtk_window_group_new ();