Renamed wxPrintNativeData methods to better match
those of the preexisting wxMac class. This should make transition of the wxMac classes to the new wxPrintNativeData classes easier. Renamed wxWindowsPrintNativeData to a proper name that is less confusing (GetNativeData -> GetDevMode). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29956 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -146,7 +146,7 @@ bool wxWindowsPrintNativeData::Ok() const
|
||||
return (m_devMode != NULL) ;
|
||||
}
|
||||
|
||||
bool wxWindowsPrintNativeData::ConvertTo( wxPrintData &data )
|
||||
bool wxWindowsPrintNativeData::TransferTo( wxPrintData &data )
|
||||
{
|
||||
HGLOBAL hDevMode = (HGLOBAL)(DWORD) m_devMode;
|
||||
HGLOBAL hDevNames = (HGLOBAL)(DWORD) m_devNames;
|
||||
@@ -308,7 +308,7 @@ bool wxWindowsPrintNativeData::ConvertTo( wxPrintData &data )
|
||||
return true;
|
||||
}
|
||||
|
||||
bool wxWindowsPrintNativeData::ConvertFrom( const wxPrintData &data )
|
||||
bool wxWindowsPrintNativeData::TransferFrom( const wxPrintData &data )
|
||||
{
|
||||
HGLOBAL hDevMode = (HGLOBAL)(DWORD) m_devMode;
|
||||
HGLOBAL hDevNames = (HGLOBAL)(DWORD) m_devNames;
|
||||
|
Reference in New Issue
Block a user