diff options
author | Marius Kintel <marius@kintel.net> | 2014-02-04 06:22:02 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-02-04 06:22:02 (GMT) |
commit | 00d20bb5ac94e64700216e046f6650542b9bb187 (patch) | |
tree | 0b9704eb8280da2df4a4ee350c27315d6fa480bd /src/AppleEvents.cc | |
parent | b80c6c7bf46fd896e24787f91d7663346a8f9287 (diff) |
Fix issue with boost and Apple namespace pollution
Diffstat (limited to 'src/AppleEvents.cc')
-rw-r--r-- | src/AppleEvents.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AppleEvents.cc b/src/AppleEvents.cc index 3102792..39aba9d 100644 --- a/src/AppleEvents.cc +++ b/src/AppleEvents.cc @@ -24,7 +24,7 @@ void installAppleEventHandlers() { // Reload handler OSErr err = AEInstallEventHandler('SCAD', 'relo', NewAEEventHandlerUPP(eventHandler), 0, true); - require_noerr(err, CantInstallAppleEventHandler); + __Require_noErr(err, CantInstallAppleEventHandler); return; CantInstallAppleEventHandler: |