Title: [219126] trunk/Source/WebKit2
Revision
219126
Author
zandober...@gmail.com
Date
2017-07-05 07:05:47 -0700 (Wed, 05 Jul 2017)

Log Message

[GLib] Incorrect <glib/gi18n.h> include in WebKitWebsiteData
https://bugs.webkit.org/show_bug.cgi?id=174093

Reviewed by Michael Catanzaro.

* UIProcess/API/glib/WebKitWebsiteData.cpp: Include <glib/gi18n-lib.h>
rather than <glib/gi18n.h>, since the former has to be included in a
library while the latter should only be included in a standalone application.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (219125 => 219126)


--- trunk/Source/WebKit2/ChangeLog	2017-07-05 04:44:26 UTC (rev 219125)
+++ trunk/Source/WebKit2/ChangeLog	2017-07-05 14:05:47 UTC (rev 219126)
@@ -1,3 +1,14 @@
+2017-07-05  Zan Dobersek  <zdober...@igalia.com>
+
+        [GLib] Incorrect <glib/gi18n.h> include in WebKitWebsiteData
+        https://bugs.webkit.org/show_bug.cgi?id=174093
+
+        Reviewed by Michael Catanzaro.
+
+        * UIProcess/API/glib/WebKitWebsiteData.cpp: Include <glib/gi18n-lib.h>
+        rather than <glib/gi18n.h>, since the former has to be included in a
+        library while the latter should only be included in a standalone application.
+
 2017-07-04  Joseph Pecoraro  <pecor...@apple.com>
 
         Cleanup some StringBuilder use

Modified: trunk/Source/WebKit2/UIProcess/API/glib/WebKitWebsiteData.cpp (219125 => 219126)


--- trunk/Source/WebKit2/UIProcess/API/glib/WebKitWebsiteData.cpp	2017-07-05 04:44:26 UTC (rev 219125)
+++ trunk/Source/WebKit2/UIProcess/API/glib/WebKitWebsiteData.cpp	2017-07-05 14:05:47 UTC (rev 219126)
@@ -22,7 +22,7 @@
 
 #include "WebKitSecurityOriginPrivate.h"
 #include "WebKitWebsiteDataPrivate.h"
-#include <glib/gi18n.h>
+#include <glib/gi18n-lib.h>
 #include <wtf/HashTable.h>
 #include <wtf/Vector.h>
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to