diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-16 07:38:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-16 07:38:49 +0800 |
commit | 73510c9d4bbcc34825d6717b9a84b8daf25aa587 (patch) | |
tree | f97ebfdb47758c514dab4bfa8657cf57e4f7af66 /e-util | |
parent | 8e7f6aee3e1163833a5675cc567d81c2608f4a75 (diff) | |
download | gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar.gz gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar.bz2 gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar.lz gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar.xz gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.tar.zst gsoc2013-evolution-73510c9d4bbcc34825d6717b9a84b8daf25aa587.zip |
Remove old GTK+ version checks.
We require GTK+ 3.4, so no need to check for versions older than that.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-web-view-gtkhtml.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/e-util/e-web-view-gtkhtml.c b/e-util/e-web-view-gtkhtml.c index 7303277f6a..98e8547b11 100644 --- a/e-util/e-web-view-gtkhtml.c +++ b/e-util/e-web-view-gtkhtml.c @@ -851,7 +851,6 @@ web_view_gtkhtml_scroll_event (GtkWidget *widget, if (event->state & GDK_CONTROL_MASK) { GdkScrollDirection direction = event->direction; - #if GTK_CHECK_VERSION(3,3,18) if (direction == GDK_SCROLL_SMOOTH) { static gdouble total_delta_y = 0.0; @@ -867,7 +866,6 @@ web_view_gtkhtml_scroll_event (GtkWidget *widget, return FALSE; } } - #endif switch (direction) { case GDK_SCROLL_UP: |