diff --git a/include/wx/mac/uma.h b/include/wx/mac/uma.h index 01885e7519..6133502a6b 100644 --- a/include/wx/mac/uma.h +++ b/include/wx/mac/uma.h @@ -82,9 +82,9 @@ void UMADrawMenuBar() ; void UMAShowWatchCursor() ; void UMAShowArrowCursor() ; -#if PM_USE_SESSION_APIS -OSStatus UMAPrOpen(PMPrintSession *macPrintPort) ; -OSStatus UMAPrClose(PMPrintSession *macPrintPort) ; +#if TARGET_CARBON && PM_USE_SESSION_APIS +OSStatus UMAPrOpen(PMPrintSession *macPrintSession) ; +OSStatus UMAPrClose(PMPrintSession *macPrintSession) ; #else OSStatus UMAPrOpen() ; OSStatus UMAPrClose() ; diff --git a/src/mac/carbon/uma.cpp b/src/mac/carbon/uma.cpp index e0e3bdf35f..52e0497c55 100644 --- a/src/mac/carbon/uma.cpp +++ b/src/mac/carbon/uma.cpp @@ -289,8 +289,8 @@ void UMAInsertMenu( MenuRef insertMenu , SInt16 afterId ) int gPrOpenCounter = 0 ; -#if PM_USE_SESSION_APIS -OSStatus UMAPrOpen(PMPrintSession *macPrintPort) +#if TARGET_CARBON && PM_USE_SESSION_APIS +OSStatus UMAPrOpen(PMPrintSession *macPrintSession) #else OSStatus UMAPrOpen() #endif @@ -311,7 +311,7 @@ OSStatus UMAPrOpen() if ( gPrOpenCounter == 1 ) { #if PM_USE_SESSION_APIS - err = PMCreateSession(macPrintPort) ; + err = PMCreateSession(macPrintSession) ; #else err = PMBegin() ; #endif @@ -321,8 +321,8 @@ OSStatus UMAPrOpen() #endif } -#if PM_USE_SESSION_APIS -OSStatus UMAPrClose(PMPrintSession *macPrintPort) +#if TARGET_CARBON && PM_USE_SESSION_APIS +OSStatus UMAPrClose(PMPrintSession *macPrintSession) #else OSStatus UMAPrClose() #endif @@ -344,7 +344,8 @@ OSStatus UMAPrClose() if ( gPrOpenCounter == 1 ) { #if PM_USE_SESSION_APIS - err = PMRelease(*macPrintPort) ; + err = PMRelease(*macPrintSession) ; + *macPrintSession = kPMNoReference; #else err = PMEnd() ; #endif diff --git a/src/mac/uma.cpp b/src/mac/uma.cpp index e0e3bdf35f..52e0497c55 100644 --- a/src/mac/uma.cpp +++ b/src/mac/uma.cpp @@ -289,8 +289,8 @@ void UMAInsertMenu( MenuRef insertMenu , SInt16 afterId ) int gPrOpenCounter = 0 ; -#if PM_USE_SESSION_APIS -OSStatus UMAPrOpen(PMPrintSession *macPrintPort) +#if TARGET_CARBON && PM_USE_SESSION_APIS +OSStatus UMAPrOpen(PMPrintSession *macPrintSession) #else OSStatus UMAPrOpen() #endif @@ -311,7 +311,7 @@ OSStatus UMAPrOpen() if ( gPrOpenCounter == 1 ) { #if PM_USE_SESSION_APIS - err = PMCreateSession(macPrintPort) ; + err = PMCreateSession(macPrintSession) ; #else err = PMBegin() ; #endif @@ -321,8 +321,8 @@ OSStatus UMAPrOpen() #endif } -#if PM_USE_SESSION_APIS -OSStatus UMAPrClose(PMPrintSession *macPrintPort) +#if TARGET_CARBON && PM_USE_SESSION_APIS +OSStatus UMAPrClose(PMPrintSession *macPrintSession) #else OSStatus UMAPrClose() #endif @@ -344,7 +344,8 @@ OSStatus UMAPrClose() if ( gPrOpenCounter == 1 ) { #if PM_USE_SESSION_APIS - err = PMRelease(*macPrintPort) ; + err = PMRelease(*macPrintSession) ; + *macPrintSession = kPMNoReference; #else err = PMEnd() ; #endif