mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
24 lines
655 B
Plaintext
24 lines
655 B
Plaintext
#ifdef __WXMAC__
|
|
|
|
#include "AudacityApp.h"
|
|
|
|
#include <AppKit/NSApplication.h>
|
|
|
|
// One Mac-only method of class AudacityApp that uses Objective-C is kept
|
|
// here so that AudacityApp.cpp can be just C++
|
|
|
|
// The function is not presently used. See commit
|
|
// a05d039055909d7d1dc2d4f31e1fe0659a3207dd
|
|
// whih added this function, and later commit
|
|
// e359383d3bebd583b894c9ee9d02cce2be318b56
|
|
// which made it unused. Maybe it will need future use.
|
|
|
|
void AudacityApp::MacActivateApp()
|
|
{
|
|
id app = [NSApplication sharedApplication];
|
|
if ( [app respondsToSelector:@selector(activateIgnoringOtherApps:)] )
|
|
[app activateIgnoringOtherApps:YES];
|
|
}
|
|
|
|
#endif
|