* GormCore/GormFunctions.m: Temporary change to fix compilation

problem.
	* GormCore/GormViewEditor.m: Added code to show id of the object 
	as a tooltip


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@28825 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-10-14 03:52:34 +00:00
parent 23e066acd5
commit d152324c22
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2009-10-13 23:52-EDT Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormFunctions.m: Temporary change to fix compilation
problem.
* GormCore/GormViewEditor.m: Added code to show id of the object
as a tooltip.
2009-09-22 16:59-EDT Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormViewWithSubviewsEditor.m: Call super instead of

View file

@ -366,7 +366,7 @@ NSArray *_GSObjCMethodNamesForClass(Class class, BOOL collect)
{
void *iterator = 0;
while ((methods = class_nextMethodList(class, &iterator)))
while ((methods = NULL)) //class_nextMethodList(class, &iterator)))
{
int i;

View file

@ -154,6 +154,7 @@ static BOOL currently_displaying = NO;
if (activated == NO)
{
NSView *superview;
NSString *name = [document nameForObject: _editedObject];
// if the view window is not nil, it's a standalone view...
if(viewWindow != nil)
@ -185,7 +186,7 @@ static BOOL currently_displaying = NO;
}
[self addSubview: _editedObject];
[self setToolTip: name];
[[NSNotificationCenter defaultCenter]
addObserver: self