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
This commit is contained in:
Vadim Zeitlin
2003-03-24 20:31:24 +00:00
parent c1f7d193f6
commit 17dd9caaa5

View File

@@ -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));