mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* GormInfo.plist: Simplified copyright portion. Give a range of
years instead of each year individually. * Gorm.m: Implement simple mechanism for recieving notifications to parse a given class file. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@30942 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fa3445b7c7
commit
2ba2c53a79
3 changed files with 18 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2010-07-10 01:22-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* GormInfo.plist: Simplified copyright portion. Give a range of
|
||||
years instead of each year individually.
|
||||
* Gorm.m: Implement simple mechanism for recieving notifications
|
||||
to parse a given class file.
|
||||
|
||||
2010-06-24 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Palettes/2Controls/GormPopUpButtonEditor.m
|
||||
|
|
10
Gorm.m
10
Gorm.m
|
@ -127,6 +127,10 @@
|
|||
selector: @selector(handleNotification:)
|
||||
name: @"GormDeleteClassNotification"
|
||||
object: nil];
|
||||
[ndc addObserver: self
|
||||
selector: @selector(handleNotification:)
|
||||
name: @"GormParseClassNotification"
|
||||
object: nil];
|
||||
|
||||
/*
|
||||
* establish registration domain defaults from file.
|
||||
|
@ -969,6 +973,12 @@
|
|||
id obj = [notification object];
|
||||
[self deleteClass: obj];
|
||||
}
|
||||
else if ([name isEqual: @"GormParseClassNotification"])
|
||||
{
|
||||
NSString *pathToClass = (NSString *)[notification object];
|
||||
GormClassManager *cm = [(GormDocument *)[self activeDocument] classManager];
|
||||
[cm parseHeader: pathToClass];
|
||||
}
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
ApplicationName = "Gorm";
|
||||
ApplicationRelease = "Gorm 1.2.13 (SVN)";
|
||||
Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
|
||||
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 FSF";
|
||||
Copyright = "Copyright (C) 1999-2010 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 3.0";
|
||||
NSBuildVersion = "1.2.13 May 19 2010";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue