2007-01-10 Steve Falkenburg <sfalken@apple.com>
Reviewed by Kevin.
Removed unnecessary printing state
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@18752 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/rendering/bidi.cpp b/WebCore/rendering/bidi.cpp
index 7a9edec..351ccb49 100644
--- a/WebCore/rendering/bidi.cpp
+++ b/WebCore/rendering/bidi.cpp
@@ -1553,7 +1553,7 @@
// before layout started. Luckily the layer has cached the repaint rect for its original
// position and size, and so we can use that to make a repaint happen now.
RenderView* c = view();
- if (c && !c->printingMode())
+ if (c && !c->printing())
c->repaintViewRectangle(m_layer->repaintRect());
}
}