From: Vadim Zeitlin Date: Mon, 24 Mar 2003 20:31:24 +0000 (+0000) Subject: print dialogs ignore user paper settings in non C locale (patch 696835) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/17dd9caaa552b76b3e1c71898f100650e3f86aaf print dialogs ignore user paper settings in non C locale (patch 696835) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/prntdlgg.cpp b/src/generic/prntdlgg.cpp index 1184a4db2a..e7fef1cdae 100644 --- a/src/generic/prntdlgg.cpp +++ b/src/generic/prntdlgg.cpp @@ -503,9 +503,13 @@ bool wxGenericPrintSetupDialog::TransferDataFromWindow() } if (m_paperTypeChoice) { - wxString val(m_paperTypeChoice->GetStringSelection()); - if (!val.IsNull() && val != wxT("")) - m_printData.SetPaperId(wxThePrintPaperDatabase->ConvertNameToId(val)); + int selectedItem = m_paperTypeChoice->GetSelection(); + if (selectedItem != -1) + { + wxPrintPaperType *paper = (wxPrintPaperType *)wxThePrintPaperDatabase->Nth(selectedItem)->Data(); + if (paper != NULL) + m_printData.SetPaperId( paper->GetId()); + } } return TRUE; @@ -765,10 +769,10 @@ bool wxGenericPageSetupDialog::TransferDataFromWindow() if (m_paperTypeChoice) { - wxString val(m_paperTypeChoice->GetStringSelection()); - if (!val.IsEmpty()) + int selectedItem = m_paperTypeChoice->GetSelection(); + if (selectedItem != -1) { - wxPrintPaperType* paper = wxThePrintPaperDatabase->FindPaperType(val); + wxPrintPaperType *paper = (wxPrintPaperType *)wxThePrintPaperDatabase->Nth(selectedItem)->Data(); if ( paper ) { m_pageData.SetPaperSize(wxSize(paper->GetWidth()/10, paper->GetHeight()/10));