Title: [87891] trunk/Source/WebCore
Revision
87891
Author
[email protected]
Date
2011-06-02 03:56:47 -0700 (Thu, 02 Jun 2011)

Log Message

[Chromium/Mac] Fix a wrong merge for r87881
https://bugs.webkit.org/show_bug.cgi?id=61845

* platform/chromium/ThemeChromiumMac.mm:
(WebCore::paintStepper):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87890 => 87891)


--- trunk/Source/WebCore/ChangeLog	2011-06-02 10:49:17 UTC (rev 87890)
+++ trunk/Source/WebCore/ChangeLog	2011-06-02 10:56:47 UTC (rev 87891)
@@ -1,3 +1,11 @@
+2011-06-02  Kent Tamura  <[email protected]>
+
+        [Chromium/Mac] Fix a wrong merge for r87881
+        https://bugs.webkit.org/show_bug.cgi?id=61845
+
+        * platform/chromium/ThemeChromiumMac.mm:
+        (WebCore::paintStepper):
+
 2011-06-02  Ian Henderson  <[email protected]>
 
         Reviewed by Simon Fraser.

Modified: trunk/Source/WebCore/platform/chromium/ThemeChromiumMac.mm (87890 => 87891)


--- trunk/Source/WebCore/platform/chromium/ThemeChromiumMac.mm	2011-06-02 10:49:17 UTC (rev 87890)
+++ trunk/Source/WebCore/platform/chromium/ThemeChromiumMac.mm	2011-06-02 10:56:47 UTC (rev 87891)
@@ -664,8 +664,7 @@
 #else
     CGContextRef cgContext = context->platformContext();
 #endif
-    HIThemeDrawButton(&backgroundBounds, &drawInfo, context->platformContext(), kHIThemeOrientationNormal, 0);
-    HIThemeDrawButton(&bounds, &drawInfo, cgContext, kHIThemeOrientationNormal, 0);
+    HIThemeDrawButton(&backgroundBounds, &drawInfo, cgContext, kHIThemeOrientationNormal, 0);
     context->restore();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to