diff --git a/Framework/PCButton.m b/Framework/PCButton.m index 868defa..cd013e4 100644 --- a/Framework/PCButton.m +++ b/Framework/PCButton.m @@ -1,7 +1,7 @@ /* GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html - Copyright (C) 2003-2004 Free Software Foundation + Copyright (C) 2003-2014 Free Software Foundation Authors: Serg Stoyan @@ -34,10 +34,8 @@ // ==== Main // ============================================================================ -//- (id)initWithFrame:(NSRect)frameRect - (id)initWithCoder:(NSCoder *)coder { -// NSLog(@"PCButton: initWithCoder"); self = [super initWithCoder:coder]; [_cell setGradientType:NSGradientConcaveWeak]; [_cell setImageDimsWhenDisabled:YES]; @@ -64,11 +62,7 @@ } - (void)dealloc -{ -#ifdef DEVELOPMENT - NSLog(@"PCButton %@: dealloc", [self stringValue]); -#endif - +{ [[NSNotificationCenter defaultCenter] removeObserver:self]; if (_hasTooltips) diff --git a/Framework/PCProjectWindow.m b/Framework/PCProjectWindow.m index 8e8d301..df63a76 100644 --- a/Framework/PCProjectWindow.m +++ b/Framework/PCProjectWindow.m @@ -1,7 +1,7 @@ /* GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html - Copyright (C) 2000-2010 Free Software Foundation + Copyright (C) 2000-2014 Free Software Foundation Authors: Philippe C.D. Robert Serg Stoyan @@ -259,10 +259,6 @@ - (void)dealloc { -#ifdef DEVELOPMENT - NSLog (@"PCProjectWindow: dealloc"); -#endif - [[NSNotificationCenter defaultCenter] removeObserver:self]; [projectWindow close]; @@ -720,8 +716,6 @@ /* PCLogInfo(self, @"windowDidBecomeKey: activeSubproject %@", [[project activeSubproject] projectName]);*/ - NSLog(@"windowDidBecomeKey: project %@", - [project projectName]); if ([[project projectManager] rootActiveProject] != project) { @@ -808,7 +802,6 @@ if (windowsDict != nil) { browserString = [windowsDict objectForKey:@"ProjectBrowser"]; - NSLog(@"Browser size '%@'", browserString); if (browserString != nil && ![browserString isEqualToString:@""]) { browserRect = NSRectFromString(browserString); diff --git a/Modules/Parsers/ProjectCenter/PCParser.m b/Modules/Parsers/ProjectCenter/PCParser.m index 3d56d5b..bfcb223 100644 --- a/Modules/Parsers/ProjectCenter/PCParser.m +++ b/Modules/Parsers/ProjectCenter/PCParser.m @@ -1,7 +1,7 @@ /* ** CodeParser.m ** -** Copyright (c) 2003-2013 +** Copyright (c) 2003-2014 ** ** Author: Yen-Ju ** @@ -140,7 +140,6 @@ CodeType codeType(unichar *ch) void (*impInvisible)(id, SEL, unichar); void (*impSymbol)(id, SEL, unichar); - NSLog(@"CodeParser begin..."); impString = (void (*)(id, SEL, id)) [[_handler class] instanceMethodForSelector:selString]; @@ -211,7 +210,6 @@ CodeType codeType(unichar *ch) } } } - NSLog(@"CodeParser end..."); } @end