Skip to content

Commit

Permalink
Revert "chore: some more const never hurts"
Browse files Browse the repository at this point in the history
This reverts commit 97d4c3b.
  • Loading branch information
tillt committed Nov 29, 2023
1 parent e4110be commit 18f787a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions KompleteSynthesia/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ @implementation AppDelegate {
BOOL usbAvailable;
}

const NSString* kHardwareAgentName = @"NIHardwareAgent.app";
const NSString* kHardwareAgentBundleIdentifier = @"com.native-instruments.NIHardwareService";
const NSString* kHardwareAgentPath = @"/Library/Application Support/Native Instruments/Hardware/NIHardwareAgent.app";
NSString* kHardwareAgentName = @"NIHardwareAgent.app";
NSString* kHardwareAgentBundleIdentifier = @"com.native-instruments.NIHardwareService";
NSString* kHardwareAgentPath = @"/Library/Application Support/Native Instruments/Hardware/NIHardwareAgent.app";

const NSString* kHostIntegrationAgentName = @"NIHostIntegrationAgent.app";
const NSString* kHostIntegrationAgentBundleIdentifier = @"com.native-instruments.NIHostIntegrationAgent";
const NSString* kHostIntegrationAgentPath = @"/Library/Application Support/Native Instruments/Hardware/NIHostIntegrationAgent.app";
NSString* kHostIntegrationAgentName = @"NIHostIntegrationAgent.app";
NSString* kHostIntegrationAgentBundleIdentifier = @"com.native-instruments.NIHostIntegrationAgent";
NSString* kHostIntegrationAgentPath = @"/Library/Application Support/Native Instruments/Hardware/NIHostIntegrationAgent.app";

const NSString* kDaemonName = @"NTKDaemon.app";
const NSString* kDaemonBundleIdentifier = @"com.native-instruments.NTKDaemon";
const NSString* kDaemonPath = @"/Library/Application Support/Native Instruments/NTK/NTKDaemon.app";
NSString* kDaemonName = @"NTKDaemon.app";
NSString* kDaemonBundleIdentifier = @"com.native-instruments.NTKDaemon";
NSString* kDaemonPath = @"/Library/Application Support/Native Instruments/NTK/NTKDaemon.app";

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
Expand Down

0 comments on commit 18f787a

Please sign in to comment.