remove logging

This commit is contained in:
Kelvin Sherlock 2021-05-27 20:36:24 -04:00
parent 8944c88339
commit 5f84c4b2c1
2 changed files with 5 additions and 5 deletions

View File

@ -223,7 +223,7 @@ Todo --
} }
- (void)controlTextDidChange:(NSNotification *)notification { - (void)controlTextDidChange:(NSNotification *)notification {
NSLog(@"controlTextDidChange"); //NSLog(@"controlTextDidChange");
if (_value) { if (_value) {
_dirty = YES; _dirty = YES;
@ -243,7 +243,7 @@ Todo --
} }
} }
- (void)controlTextDidBeginEditing:(NSNotification *)obj { - (void)controlTextDidBeginEditing:(NSNotification *)obj {
NSLog(@"controlTextDidBeginEditing"); //NSLog(@"controlTextDidBeginEditing");
_editing = YES; _editing = YES;
_dirty = NO; _dirty = NO;
@ -253,7 +253,7 @@ Todo --
- (void)controlTextDidEndEditing:(NSNotification *)obj { - (void)controlTextDidEndEditing:(NSNotification *)obj {
NSLog(@"controlTextDidEndEditing"); //NSLog(@"controlTextDidEndEditing");
_editing = NO; _editing = NO;
@ -304,7 +304,7 @@ Todo --
[_menuView setItems: nil]; [_menuView setItems: nil];
#endif #endif
NSLog(@"selectItem:withSelector:"); //NSLog(@"selectItem:withSelector:");
} }
} }

View File

@ -530,7 +530,7 @@ static NSString *ShellQuote(NSString *s) {
- (IBAction)softwareChanged:(id)sender { - (IBAction)softwareChanged:(id)sender {
id o = [(NSControl *)sender objectValue]; id o = [(NSControl *)sender objectValue];
NSLog(@"%@", o); //NSLog(@"%@", o);
[self setSoftware: o]; [self setSoftware: o];
} }