diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2016-07-22 21:59:09 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2016-07-22 21:59:15 +0200 |
commit | 4243b683ee663e059e36c2c8a95c344ba05555b8 (patch) | |
tree | 71547a861cbc59db3d929ba35bc4b6bf7efcd11a /community/webkitgtk/webkitgtk-2.4.9-abs.patch | |
parent | 42dbaf42dd7fc2da93cafc33288c60aa3cf39b04 (diff) | |
download | aports-4243b683ee663e059e36c2c8a95c344ba05555b8.tar.bz2 aports-4243b683ee663e059e36c2c8a95c344ba05555b8.tar.xz |
community/webkitgtk: fix ambiguous abs call
Diffstat (limited to 'community/webkitgtk/webkitgtk-2.4.9-abs.patch')
-rw-r--r-- | community/webkitgtk/webkitgtk-2.4.9-abs.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/webkitgtk/webkitgtk-2.4.9-abs.patch b/community/webkitgtk/webkitgtk-2.4.9-abs.patch new file mode 100644 index 0000000000..9a1c5f990d --- /dev/null +++ b/community/webkitgtk/webkitgtk-2.4.9-abs.patch @@ -0,0 +1,26 @@ +diff -Nur webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/GtkClickCounter.cpp webkitgtk-2.4.9/Source/WebCore/platform/gtk/GtkClickCounter.cpp +--- webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/GtkClickCounter.cpp 2015-05-20 03:03:24.000000000 -0600 ++++ webkitgtk-2.4.9/Source/WebCore/platform/gtk/GtkClickCounter.cpp 2016-02-07 11:30:42.392686308 -0700 +@@ -85,8 +85,8 @@ + guint32 eventTime = getEventTime(event); + + if ((event->type == GDK_2BUTTON_PRESS || event->type == GDK_3BUTTON_PRESS) +- || ((abs(buttonEvent->x - m_previousClickPoint.x()) < doubleClickDistance) +- && (abs(buttonEvent->y - m_previousClickPoint.y()) < doubleClickDistance) ++ || ((fabs(buttonEvent->x - m_previousClickPoint.x()) < doubleClickDistance) ++ && (fabs(buttonEvent->y - m_previousClickPoint.y()) < doubleClickDistance) + && (eventTime - m_previousClickTime < static_cast<guint>(doubleClickTime)) + && (buttonEvent->button == m_previousClickButton))) + m_currentClickCount++; +diff -Nur webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp webkitgtk-2.4.9/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp +--- webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp 2015-05-20 03:03:24.000000000 -0600 ++++ webkitgtk-2.4.9/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp 2016-02-07 11:49:36.384691005 -0700 +@@ -659,7 +659,7 @@ + if (!std::isfinite(time)) + return String::fromUTF8(_("indefinite time")); + +- int seconds = static_cast<int>(abs(time)); ++ int seconds = static_cast<int>(fabs(time)); + int days = seconds / (60 * 60 * 24); + int hours = seconds / (60 * 60); + int minutes = (seconds / 60) % 60; |