summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-properties-window.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-12-29 15:10:34 +0300
committermonsta <[email protected]>2016-12-29 15:10:34 +0300
commit5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde (patch)
tree41eaccba19f4e46291e6b25c8e6bc0bc9bfc5967 /src/file-manager/fm-properties-window.c
parent5ba16bf7f86d2a9daff01cc146a57f5201141c65 (diff)
downloadcaja-5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde.tar.bz2
caja-5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde.tar.xz
fix build warning about wrong variable type
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r--src/file-manager/fm-properties-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index 24617e90..e3fab002 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -3407,7 +3407,7 @@ create_emblems_page (FMPropertiesWindow *window)
gtk_container_set_border_width (GTK_CONTAINER (emblems_table), 12);
/*stop GTK 3.22 builds from ballooning the properties dialog to full screen height */
#if GTK_CHECK_VERSION (3, 22, 0)
- gtk_scrolled_window_set_max_content_height(scroller, 300);
+ gtk_scrolled_window_set_max_content_height (GTK_SCROLLED_WINDOW (scroller), 300);
#endif
gtk_widget_show (scroller);