Title: [106608] trunk/Source/WebKit/gtk
Revision
106608
Author
[email protected]
Date
2012-02-02 17:49:28 -0800 (Thu, 02 Feb 2012)

Log Message

[GTK] Don't use uint
https://bugs.webkit.org/show_bug.cgi?id=77678

Patch by Kalev Lember <[email protected]> on 2012-02-02
Reviewed by Martin Robinson.

With the MingGW cross compiler toolchain in Fedora, uint wasn't
defined, so use unsigned int instead.

* WebCoreSupport/ChromeClientGtk.h:
(ChromeClient): Use unsigned int instead of uint

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (106607 => 106608)


--- trunk/Source/WebKit/gtk/ChangeLog	2012-02-03 01:35:29 UTC (rev 106607)
+++ trunk/Source/WebKit/gtk/ChangeLog	2012-02-03 01:49:28 UTC (rev 106608)
@@ -1,3 +1,16 @@
+2012-02-02  Kalev Lember  <[email protected]>
+
+        [GTK] Don't use uint
+        https://bugs.webkit.org/show_bug.cgi?id=77678
+
+        Reviewed by Martin Robinson.
+
+        With the MingGW cross compiler toolchain in Fedora, uint wasn't
+        defined, so use unsigned int instead.
+
+        * WebCoreSupport/ChromeClientGtk.h:
+        (ChromeClient): Use unsigned int instead of uint
+
 2012-02-02  Claudio Saavedra  <[email protected]> and Martin Robinson  <[email protected]>
 
         [GTK] WebKitWebView won't work in a GtkOffscreenWindow

Modified: trunk/Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h (106607 => 106608)


--- trunk/Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h	2012-02-03 01:35:29 UTC (rev 106607)
+++ trunk/Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h	2012-02-03 01:49:28 UTC (rev 106608)
@@ -182,7 +182,7 @@
         Vector<IntRect> m_rectsToScroll;
         Vector<IntSize> m_scrollOffsets;
         double m_lastDisplayTime;
-        uint m_repaintSoonSourceId;
+        unsigned int m_repaintSoonSourceId;
     };
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to