]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/cmndata.cpp
compilation fix for PCH-less compilation after the last change
[wxWidgets.git] / src / common / cmndata.cpp
index a9a9c05f8e11d1b1a4fc1c29336650ef4c544a31..3c04d1d0b961b7e4b4eca4ecf0014578a3989e5c 100644 (file)
@@ -342,7 +342,12 @@ wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData)
     m_printMinPage = 1;
     m_printMaxPage = 9999;
     m_printNoCopies = 1;
+    // On Mac the Print dialog always defaults to "All Pages"
+#ifdef __WXMAC__
+    m_printAllPages = true;
+#else
     m_printAllPages = false;
+#endif
     m_printCollate = false;
     m_printToFile = false;
     m_printSelection = false;