removing unnecessary casts
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -80,12 +80,12 @@ void wxMacCarbonPrintData::ValidateOrCreate()
|
|||||||
OSStatus err = noErr ;
|
OSStatus err = noErr ;
|
||||||
if ( m_macPrintSession == kPMNoReference )
|
if ( m_macPrintSession == kPMNoReference )
|
||||||
{
|
{
|
||||||
err = PMCreateSession( (PMPrintSession *) &m_macPrintSession ) ;
|
err = PMCreateSession( &m_macPrintSession ) ;
|
||||||
}
|
}
|
||||||
// Set up a valid PageFormat object.
|
// Set up a valid PageFormat object.
|
||||||
if ( m_macPageFormat == kPMNoPageFormat)
|
if ( m_macPageFormat == kPMNoPageFormat)
|
||||||
{
|
{
|
||||||
err = PMCreatePageFormat((PMPageFormat *) &m_macPageFormat);
|
err = PMCreatePageFormat(&m_macPageFormat);
|
||||||
|
|
||||||
// Note that PMPageFormat is not session-specific, but calling
|
// Note that PMPageFormat is not session-specific, but calling
|
||||||
// PMSessionDefaultPageFormat assigns values specific to the printer
|
// PMSessionDefaultPageFormat assigns values specific to the printer
|
||||||
@@ -93,21 +93,21 @@ void wxMacCarbonPrintData::ValidateOrCreate()
|
|||||||
if ((err == noErr) &&
|
if ((err == noErr) &&
|
||||||
( m_macPageFormat != kPMNoPageFormat))
|
( m_macPageFormat != kPMNoPageFormat))
|
||||||
{
|
{
|
||||||
err = PMSessionDefaultPageFormat((PMPrintSession) m_macPrintSession,
|
err = PMSessionDefaultPageFormat(m_macPrintSession,
|
||||||
(PMPageFormat) m_macPageFormat);
|
m_macPageFormat);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
err = PMSessionValidatePageFormat((PMPrintSession) m_macPrintSession,
|
err = PMSessionValidatePageFormat(m_macPrintSession,
|
||||||
(PMPageFormat) m_macPageFormat,
|
m_macPageFormat,
|
||||||
kPMDontWantBoolean);
|
kPMDontWantBoolean);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set up a valid PrintSettings object.
|
// Set up a valid PrintSettings object.
|
||||||
if ( m_macPrintSettings == kPMNoPrintSettings)
|
if ( m_macPrintSettings == kPMNoPrintSettings)
|
||||||
{
|
{
|
||||||
err = PMCreatePrintSettings((PMPrintSettings *) &m_macPrintSettings);
|
err = PMCreatePrintSettings( &m_macPrintSettings);
|
||||||
|
|
||||||
// Note that PMPrintSettings is not session-specific, but calling
|
// Note that PMPrintSettings is not session-specific, but calling
|
||||||
// PMSessionDefaultPrintSettings assigns values specific to the printer
|
// PMSessionDefaultPrintSettings assigns values specific to the printer
|
||||||
@@ -115,14 +115,14 @@ void wxMacCarbonPrintData::ValidateOrCreate()
|
|||||||
if ((err == noErr) &&
|
if ((err == noErr) &&
|
||||||
( m_macPrintSettings != kPMNoPrintSettings))
|
( m_macPrintSettings != kPMNoPrintSettings))
|
||||||
{
|
{
|
||||||
err = PMSessionDefaultPrintSettings((PMPrintSession) m_macPrintSession,
|
err = PMSessionDefaultPrintSettings(m_macPrintSession,
|
||||||
(PMPrintSettings) m_macPrintSettings);
|
m_macPrintSettings);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
err = PMSessionValidatePrintSettings((PMPrintSession) m_macPrintSession,
|
err = PMSessionValidatePrintSettings( m_macPrintSession,
|
||||||
(PMPrintSettings) m_macPrintSettings,
|
m_macPrintSettings,
|
||||||
kPMDontWantBoolean);
|
kPMDontWantBoolean);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user