diff options
author | monsta <[email protected]> | 2016-12-29 15:10:34 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-12-29 15:10:34 +0300 |
commit | 5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde (patch) | |
tree | 41eaccba19f4e46291e6b25c8e6bc0bc9bfc5967 | |
parent | 5ba16bf7f86d2a9daff01cc146a57f5201141c65 (diff) | |
download | caja-5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde.tar.bz2 caja-5d1e0d9af9f8f235cc66c9ee2d20005eaf958fde.tar.xz |
fix build warning about wrong variable type
-rw-r--r-- | src/file-manager/fm-properties-window.c | 2 |
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); |