]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/cmndata.cpp
Further fixes to references
[wxWidgets.git] / src / common / cmndata.cpp
index eaf2321f5e1a5dc966a14b84de4c886922e2e86d..2fe0f2ff51e4003d21b68879c9629fa077e850b8 100644 (file)
@@ -1512,12 +1512,9 @@ void wxPageSetupDialogData::CalculatePaperSizeFromId()
 
     wxSize sz = wxThePrintPaperDatabase->GetSize(m_printData.GetPaperId());
 
-    if (sz.x != 0)
-    {
-        // sz is in 10ths of a mm, so multiply by 10.
-        m_paperSize.x = sz.x * 10;
-        m_paperSize.y = sz.y * 10;
-    }
+    // sz is in 10ths of a mm, while paper size is in mm
+    m_paperSize.x = sz.x / 10;
+    m_paperSize.y = sz.y / 10;
 }
 
 #endif // wxUSE_PRINTING_ARCHITECTURE