Title: [206205] trunk/Source/WebCore
Revision
206205
Author
commit-qu...@webkit.org
Date
2016-09-21 02:48:51 -0700 (Wed, 21 Sep 2016)

Log Message

[GTK] Fix build failure of ScrollbarThemeGtk with libc++
https://bugs.webkit.org/show_bug.cgi?id=162302

Patch by Jeremy Huddleston Sequoia <jerem...@apple.com> on 2016-09-21
Reviewed by Carlos Garcia Campos.

* platform/gtk/ScrollbarThemeGtk.cpp:
(WebCore::ScrollbarThemeGtk::paint): Add missing #include <cstdlib>

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206204 => 206205)


--- trunk/Source/WebCore/ChangeLog	2016-09-21 09:44:06 UTC (rev 206204)
+++ trunk/Source/WebCore/ChangeLog	2016-09-21 09:48:51 UTC (rev 206205)
@@ -1,3 +1,13 @@
+2016-09-21  Jeremy Huddleston Sequoia  <jerem...@apple.com>
+
+        [GTK] Fix build failure of ScrollbarThemeGtk with libc++
+        https://bugs.webkit.org/show_bug.cgi?id=162302
+
+        Reviewed by Carlos Garcia Campos.
+
+        * platform/gtk/ScrollbarThemeGtk.cpp:
+        (WebCore::ScrollbarThemeGtk::paint): Add missing #include <cstdlib>
+
 2016-09-21  Philippe Normand  <pnorm...@igalia.com>
 
         [OpenWebRTC] Miscellaneous fixes

Modified: trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp (206204 => 206205)


--- trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp	2016-09-21 09:44:06 UTC (rev 206204)
+++ trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp	2016-09-21 09:48:51 UTC (rev 206205)
@@ -33,6 +33,7 @@
 #include "RenderThemeGadget.h"
 #include "ScrollView.h"
 #include "Scrollbar.h"
+#include <cstdlib>
 #include <gtk/gtk.h>
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to