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:
parent
f85b45fb12
commit
53fa663af1
@ -216,13 +216,12 @@ public:
|
||||
void SetFilename( const wxString &filename ) { m_filename = filename; }
|
||||
|
||||
void operator=(const wxPrintData& data);
|
||||
|
||||
wxPrintNativeDataBase *GetNativeData() const { return m_nativeData; }
|
||||
|
||||
#if defined(__WXMAC__)
|
||||
// Convert between wxPrintData and native data
|
||||
void ConvertToNative();
|
||||
void ConvertFromNative();
|
||||
#endif
|
||||
// Holds the native print data
|
||||
wxPrintNativeDataBase *GetNativeData() const { return m_nativeData; }
|
||||
|
||||
public:
|
||||
#if defined(__WXMAC__)
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user