mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
* 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:
parent
23e066acd5
commit
d152324c22
3 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue