diff options
Diffstat (limited to 'src/ui/theme.c')
-rw-r--r-- | src/ui/theme.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/theme.c b/src/ui/theme.c index be948369..2ddb1485 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -410,10 +410,14 @@ meta_frame_layout_get_borders (const MetaFrameLayout *layout, { int buttons_height, title_height; +#if GTK_CHECK_VERSION(3, 0, 0) + g_return_if_fail (layout != NULL); +#else g_return_if_fail (top_height != NULL); g_return_if_fail (bottom_height != NULL); g_return_if_fail (left_width != NULL); g_return_if_fail (right_width != NULL); +#endif if (!layout->has_title) text_height = 0; |