Typo fix after r107707.
authorossy@webkit.org <ossy@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 14 Feb 2012 14:28:41 +0000 (14:28 +0000)
committerossy@webkit.org <ossy@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 14 Feb 2012 14:28:41 +0000 (14:28 +0000)
* platform/graphics/texmap/TextureMapperNode.cpp:
(WebCore::TextureMapperNode::updateBackingStore):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@107710 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/platform/graphics/texmap/TextureMapperNode.cpp

index fa1d630..f3ef71a 100644 (file)
@@ -1,3 +1,10 @@
+2012-02-14  Csaba Osztrogonác  <ossy@webkit.org>
+
+        Typo fix after r107707.
+
+        * platform/graphics/texmap/TextureMapperNode.cpp:
+        (WebCore::TextureMapperNode::updateBackingStore):
+
 2012-02-14  Andrey Kosyakov  <caseq@chromium.org>
 
         Web Inspector: [refactoring] extract TimelineOverviewWindow from TimelineOverviewPanel
index df2a5ff..ce2af00 100644 (file)
@@ -109,7 +109,7 @@ void TextureMapperNode::updateBackingStore(TextureMapper* textureMapper, Graphic
     if (!m_backingStore)
         m_backingStore = TextureMapperTiledBackingStore::create();
 
-    ASSERT(dynamic_cast<TextuerMapperTiledBackingStore*>(m_backingStore.get()));
+    ASSERT(dynamic_cast<TextureMapperTiledBackingStore*>(m_backingStore.get()));
 
     // Paint the entire dirty rect into an image buffer. This ensures we only paint once.
     OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(dirtyRect.size());