Use wxPageSetupDialogData instead of old wxPageSetupData everywhere.

No real changes, just don't use the old and kept for compatibility only
wxPageSetupData name.

Closes #13992.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70636 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-20 21:55:55 +00:00
parent 96dc06fdce
commit 7193abfbc8
10 changed files with 20 additions and 20 deletions

View File

@@ -460,14 +460,14 @@ bool wxOSXPrintData::TransferTo( wxPrintData &data )
return true ;
}
void wxOSXPrintData::TransferFrom( wxPageSetupData *WXUNUSED(data) )
void wxOSXPrintData::TransferFrom( wxPageSetupDialogData *WXUNUSED(data) )
{
// should we setup the page rect here ?
// since MacOS sometimes has two same paper rects with different
// page rects we could make it roundtrip safe perhaps
}
void wxOSXPrintData::TransferTo( wxPageSetupData* data )
void wxOSXPrintData::TransferTo( wxPageSetupDialogData* data )
{
#if wxOSX_USE_COCOA
UpdateToPMState();