summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-12-29 15:10:34 +0300
committermonsta <[email protected]>2017-01-22 13:22:16 +0300
commit5d10e2fd61222796bbd540dc1c452de50a075747 (patch)
tree3d81cebf881e5e8624018f8ac3c33b197045262a
parentb61fc8197c1912f168e5c40352cd54dc5b3fbfd3 (diff)
downloadcaja-5d10e2fd61222796bbd540dc1c452de50a075747.tar.bz2
caja-5d10e2fd61222796bbd540dc1c452de50a075747.tar.xz
GTK+3: fix build warning about wrong variable type
-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 3bae51f2..c02d0ede 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -4011,7 +4011,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,21,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);