use Print Manager session APIs if PM_USE_SESSION_APIS is true
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10659 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e18bf7e7c6
commit
4cb1706ae5
@ -248,13 +248,21 @@ wxPrintData::~wxPrintData()
|
||||
#if TARGET_CARBON
|
||||
if (m_macPageFormat != kPMNoPageFormat)
|
||||
{
|
||||
#if PM_USE_SESSION_APIS
|
||||
(void)PMRelease(m_macPageFormat);
|
||||
#else
|
||||
(void)PMDisposePageFormat(m_macPageFormat);
|
||||
#endif
|
||||
m_macPageFormat = kPMNoPageFormat;
|
||||
}
|
||||
|
||||
if (m_macPrintSettings != kPMNoPrintSettings)
|
||||
{
|
||||
#if PM_USE_SESSION_APIS
|
||||
(void)PMRelease(m_macPrintSettings);
|
||||
#else
|
||||
(void)PMDisposePrintSettings(m_macPrintSettings);
|
||||
#endif
|
||||
m_macPrintSettings = kPMNoPrintSettings;
|
||||
}
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user