From 5f84c4b2c13e6da84c450a38d7bdbded008bda54 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 27 May 2021 20:36:24 -0400 Subject: [PATCH] remove logging --- Ample/AutocompleteControl.m | 8 ++++---- Ample/LaunchWindowController.m | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Ample/AutocompleteControl.m b/Ample/AutocompleteControl.m index 4e67e14..dfa6bcb 100644 --- a/Ample/AutocompleteControl.m +++ b/Ample/AutocompleteControl.m @@ -223,7 +223,7 @@ Todo -- } - (void)controlTextDidChange:(NSNotification *)notification { - NSLog(@"controlTextDidChange"); + //NSLog(@"controlTextDidChange"); if (_value) { _dirty = YES; @@ -243,7 +243,7 @@ Todo -- } } - (void)controlTextDidBeginEditing:(NSNotification *)obj { - NSLog(@"controlTextDidBeginEditing"); + //NSLog(@"controlTextDidBeginEditing"); _editing = YES; _dirty = NO; @@ -253,7 +253,7 @@ Todo -- - (void)controlTextDidEndEditing:(NSNotification *)obj { - NSLog(@"controlTextDidEndEditing"); + //NSLog(@"controlTextDidEndEditing"); _editing = NO; @@ -304,7 +304,7 @@ Todo -- [_menuView setItems: nil]; #endif - NSLog(@"selectItem:withSelector:"); + //NSLog(@"selectItem:withSelector:"); } } diff --git a/Ample/LaunchWindowController.m b/Ample/LaunchWindowController.m index 34adccd..cd6e24f 100644 --- a/Ample/LaunchWindowController.m +++ b/Ample/LaunchWindowController.m @@ -530,7 +530,7 @@ static NSString *ShellQuote(NSString *s) { - (IBAction)softwareChanged:(id)sender { id o = [(NSControl *)sender objectValue]; - NSLog(@"%@", o); + //NSLog(@"%@", o); [self setSoftware: o]; }