diff options
author | monsta <[email protected]> | 2016-11-21 22:28:15 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-21 22:28:15 +0300 |
commit | 9a94231819bbfaf23e477dc27c3966903ebdf1e1 (patch) | |
tree | 643b864764f69ce556ceeac785a2ed6e6f7c44d2 /src/eom-scroll-view.h | |
parent | e85aca3ba0c5f59b12fd557285cc74dbbb8bf909 (diff) | |
download | eom-9a94231819bbfaf23e477dc27c3966903ebdf1e1.tar.bz2 eom-9a94231819bbfaf23e477dc27c3966903ebdf1e1.tar.xz |
move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build option
and require libmate-desktop >= 1.17
Diffstat (limited to 'src/eom-scroll-view.h')
-rw-r--r-- | src/eom-scroll-view.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/eom-scroll-view.h b/src/eom-scroll-view.h index 24ad306..d618fff 100644 --- a/src/eom-scroll-view.h +++ b/src/eom-scroll-view.h @@ -18,21 +18,13 @@ typedef struct _EomScrollViewPrivate EomScrollViewPrivate; struct _EomScrollView { -#if GTK_CHECK_VERSION (3, 4, 0) GtkGrid base_instance; -#else - GtkTable widget; -#endif EomScrollViewPrivate *priv; }; struct _EomScrollViewClass { -#if GTK_CHECK_VERSION (3, 4, 0) GtkGridClass parent_class; -#else - GtkTableClass parent_class; -#endif void (* zoom_changed) (EomScrollView *view, double zoom); }; |