diff options
Diffstat (limited to 'libview/ev-view-private.h')
-rw-r--r-- | libview/ev-view-private.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libview/ev-view-private.h b/libview/ev-view-private.h index 30f6ff0e..5cfdaae8 100644 --- a/libview/ev-view-private.h +++ b/libview/ev-view-private.h @@ -108,11 +108,13 @@ typedef struct _EvHeightToPageCache { } EvHeightToPageCache; struct _EvView { - GtkLayout layout; - #if GTK_CHECK_VERSION (3, 0, 0) + GtkContainer layout; + /* Container */ GList *children; +#else + GtkLayout layout; #endif EvDocument *document; @@ -208,7 +210,11 @@ struct _EvView { }; struct _EvViewClass { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkContainerClass parent_class; +#else GtkLayoutClass parent_class; +#endif void (*binding_activated) (EvView *view, GtkScrollType scroll, |