Index: Source/web/WebFrameImpl.cpp |
diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp |
index d1f1b36aede17794d5c3ac4641d45710d77f5a70..f28f0dc4c0185d67bce914c175ec300b004a2276 100644 |
--- a/Source/web/WebFrameImpl.cpp |
+++ b/Source/web/WebFrameImpl.cpp |
@@ -332,7 +332,7 @@ public: |
float scale = m_printedPageWidth / pageRect.width(); |
context.save(); |
-#if OS(UNIX) && !OS(DARWIN) |
+#if OS(UNIX) && !OS(MACOSX) |
context.scale(WebCore::FloatSize(scale, scale)); |
#endif |
context.translate(static_cast<float>(-pageRect.x()), static_cast<float>(-pageRect.y())); |
@@ -378,7 +378,7 @@ public: |
graphicsContext.save(); |
graphicsContext.translate(0, currentHeight); |
-#if !OS(UNIX) || OS(DARWIN) |
+#if !OS(UNIX) || OS(MACOSX) |
// Account for the disabling of scaling in spoolPage. In the context |
// of spoolAllPagesWithBoundaries the scale HAS NOT been pre-applied. |
float scale = getPageShrink(pageIndex); |