Title: [86691] trunk/Source/WebCore
Revision
86691
Author
[email protected]
Date
2011-05-17 11:37:32 -0700 (Tue, 17 May 2011)

Log Message

2011-05-17  Andreas Kling  <[email protected]>

        Reviewed by Benjamin Poulain.

        [Qt] GraphicsLayerQtImpl: Remove an unused variable.

        * platform/graphics/qt/GraphicsLayerQt.cpp:
        (WebCore::GraphicsLayerQtImpl::paint):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (86690 => 86691)


--- trunk/Source/WebCore/ChangeLog	2011-05-17 18:16:27 UTC (rev 86690)
+++ trunk/Source/WebCore/ChangeLog	2011-05-17 18:37:32 UTC (rev 86691)
@@ -1,3 +1,12 @@
+2011-05-17  Andreas Kling  <[email protected]>
+
+        Reviewed by Benjamin Poulain.
+
+        [Qt] GraphicsLayerQtImpl: Remove an unused variable.
+
+        * platform/graphics/qt/GraphicsLayerQt.cpp:
+        (WebCore::GraphicsLayerQtImpl::paint):
+
 2011-05-17  Pavel Feldman  <[email protected]>
 
         Reviewed by Yury Semikhatsky.

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp (86690 => 86691)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp	2011-05-17 18:16:27 UTC (rev 86690)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp	2011-05-17 18:37:32 UTC (rev 86691)
@@ -645,7 +645,6 @@
                 // We might need to recache, in case we try to paint and the cache was purged (e.g. if it was full).
                 if (!QPixmapCache::find(m_backingStore.key, &backingStore) || backingStore.size() != m_size.toSize())
                     backingStore = recache(QRegion(m_state.contentsRect));
-                const QRectF bounds(0, 0, m_backingStore.size.width(), m_backingStore.size.height());
                 painter->drawPixmap(0, 0, backingStore);
             }
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to