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
+4 -4
View File
@@ -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:");
}
}
+1 -1
View File
@@ -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];
}