mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 16:12:17 +00:00
debug stuff cleanup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@37584 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f81be77e3b
commit
842c395eae
3 changed files with 4 additions and 19 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
** CodeParser.m
|
||||
**
|
||||
** Copyright (c) 2003-2013
|
||||
** Copyright (c) 2003-2014
|
||||
**
|
||||
** Author: Yen-Ju <yjchenx@hotmail.com>
|
||||
**
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue