]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/cmndata.cpp
add a simple benchmark for wx and iconv converters benchmarking
[wxWidgets.git] / src / common / cmndata.cpp
index a9a9c05f8e11d1b1a4fc1c29336650ef4c544a31..8c1309a9df952f079f430eed5cfcd299cec87b10 100644 (file)
@@ -92,7 +92,7 @@ void wxColourData::SetCustomColour(int i, const wxColour& colour)
     m_custColours[i] = colour;
 }
 
-wxColour wxColourData::GetCustomColour(int i)
+wxColour wxColourData::GetCustomColour(int i) const
 {
     wxCHECK_MSG( i >= 0 && i < NUM_CUSTOM, wxColour(0,0,0),
                  _T("custom colour index out of range") );
@@ -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;