Small change to ease Mac transition to common
native data printing code later. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -205,17 +205,23 @@ wxPrintData::~wxPrintData()
|
||||
}
|
||||
|
||||
|
||||
#ifdef __WXMAC__
|
||||
void wxPrintData::ConvertToNative()
|
||||
{
|
||||
#ifdef __WXMAC__
|
||||
m_nativePrintData->TransferFrom( this ) ;
|
||||
#else
|
||||
m_nativeData->TransferFrom( *this ) ;
|
||||
#endif
|
||||
}
|
||||
|
||||
void wxPrintData::ConvertFromNative()
|
||||
{
|
||||
#ifdef __WXMAC__
|
||||
m_nativePrintData->TransferTo( this ) ;
|
||||
}
|
||||
#else
|
||||
m_nativeData->TransferTo( *this ) ;
|
||||
#endif
|
||||
}
|
||||
|
||||
void wxPrintData::operator=(const wxPrintData& data)
|
||||
{
|
||||
|
Reference in New Issue
Block a user