diff options
author | Stefano Karapetsas <[email protected]> | 2014-04-23 18:47:49 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-04-23 18:47:49 +0200 |
commit | fd2e0db8c8315fd8cecd45a422e9a8f161589841 (patch) | |
tree | 5b6d3f63b53ce91113269bb73da5861a05568d78 /src/ui/theme.h | |
parent | d07a3960e9b81aaf9864902e5398eadf801a531b (diff) | |
download | marco-fd2e0db8c8315fd8cecd45a422e9a8f161589841.tar.bz2 marco-fd2e0db8c8315fd8cecd45a422e9a8f161589841.tar.xz |
GTK3 fixes
Diffstat (limited to 'src/ui/theme.h')
-rw-r--r-- | src/ui/theme.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/theme.h b/src/ui/theme.h index 30cf7ade..cfa3bde4 100644 --- a/src/ui/theme.h +++ b/src/ui/theme.h @@ -990,7 +990,11 @@ void meta_frame_style_draw (MetaFrameStyle *style, void meta_frame_style_draw_with_style (MetaFrameStyle *style, + #if GTK_CHECK_VERSION(3, 0, 0) + GtkStyleContext *style_gtk, + #else GtkStyle *style_gtk, + #endif GtkWidget *widget, #if GTK_CHECK_VERSION(3, 0, 0) cairo_t *cr, @@ -1085,7 +1089,11 @@ void meta_theme_draw_frame_by_name (MetaTheme *theme, GdkPixbuf *icon); void meta_theme_draw_frame_with_style (MetaTheme *theme, + #if GTK_CHECK_VERSION(3, 0, 0) + GtkStyleContext *style_gtk, + #else GtkStyle *style_gtk, + #endif GtkWidget *widget, #if GTK_CHECK_VERSION(3, 0, 0) cairo_t *cr, |