Title: [132805] trunk/Source/WebKit/blackberry
Revision
132805
Author
[email protected]
Date
2012-10-29 08:51:50 -0700 (Mon, 29 Oct 2012)

Log Message

[BlackBerry] Typo in WebPagePrivate::postponeDocumentRecalcStyle()
https://bugs.webkit.org/show_bug.cgi?id=100377

Patch by Mike Lattanzio <[email protected]> on 2012-10-29
Reviewed by Adam Treat.

Should be void, not bool.

* Api/WebPage.cpp:
(BlackBerry::WebKit::WebPagePrivate::postponeDocumentStyleRecalc):
* Api/WebPage_p.h:
(WebPagePrivate):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/Api/WebPage.cpp (132804 => 132805)


--- trunk/Source/WebKit/blackberry/Api/WebPage.cpp	2012-10-29 14:52:18 UTC (rev 132804)
+++ trunk/Source/WebKit/blackberry/Api/WebPage.cpp	2012-10-29 15:51:50 UTC (rev 132805)
@@ -6335,7 +6335,7 @@
     return Platform::Graphics::Screen::primaryScreen()->size();
 }
 
-bool WebPagePrivate::postponeDocumentStyleRecalc()
+void WebPagePrivate::postponeDocumentStyleRecalc()
 {
     if (Document* document = m_mainFrame->document()) {
         m_documentChildNeedsStyleRecalc = document->childNeedsStyleRecalc();

Modified: trunk/Source/WebKit/blackberry/Api/WebPage_p.h (132804 => 132805)


--- trunk/Source/WebKit/blackberry/Api/WebPage_p.h	2012-10-29 14:52:18 UTC (rev 132804)
+++ trunk/Source/WebKit/blackberry/Api/WebPage_p.h	2012-10-29 15:51:50 UTC (rev 132805)
@@ -461,7 +461,7 @@
     void applySizeOverride(int overrideWidth, int overrideHeight);
     void setTextZoomFactor(float);
 
-    bool postponeDocumentStyleRecalc();
+    void postponeDocumentStyleRecalc();
     void resumeDocumentStyleRecalc();
 
     const WebCore::HitTestResult& hitTestResult(const WebCore::IntPoint& contentPos);

Modified: trunk/Source/WebKit/blackberry/ChangeLog (132804 => 132805)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-10-29 14:52:18 UTC (rev 132804)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-10-29 15:51:50 UTC (rev 132805)
@@ -1,3 +1,17 @@
+2012-10-29  Mike Lattanzio  <[email protected]>
+
+        [BlackBerry] Typo in WebPagePrivate::postponeDocumentRecalcStyle()
+        https://bugs.webkit.org/show_bug.cgi?id=100377
+
+        Reviewed by Adam Treat.
+
+        Should be void, not bool.
+
+        * Api/WebPage.cpp:
+        (BlackBerry::WebKit::WebPagePrivate::postponeDocumentStyleRecalc):
+        * Api/WebPage_p.h:
+        (WebPagePrivate):
+
 2012-10-29  Robin Cao  <[email protected]>
 
         [BlackBerry] Fix a build error
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to