mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Fixed a longstanding bug with making connections.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19427 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
069acfa974
commit
a092bea159
2 changed files with 14 additions and 0 deletions
|
@ -1,5 +1,13 @@
|
|||
2004-05-29 23:10 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormInspectorsManager.m: [GormConnectionsInspector _internalCall:]
|
||||
The search for an existing control connection was leaving the
|
||||
con variable set to a outlet connection (occasionally) which caused
|
||||
later logic to not properly set the action list and prevented the user
|
||||
from selecting an action.
|
||||
|
||||
2004-05-29 23:10 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: [Gorm testInterface:] removed conditional. The services
|
||||
menu is always set to nil when testing. [Gorm endTesting:] added
|
||||
a NS_DURING block to catch any issues with resetting the services menu.
|
||||
|
|
|
@ -726,7 +726,12 @@
|
|||
allActionsForObject: [con destination]]);
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
con = nil;
|
||||
}
|
||||
}
|
||||
|
||||
if (con == nil)
|
||||
{
|
||||
RELEASE(actions);
|
||||
|
@ -741,6 +746,7 @@
|
|||
AUTORELEASE(con);
|
||||
}
|
||||
}
|
||||
|
||||
if (currentConnector != con)
|
||||
{
|
||||
ASSIGN(currentConnector, con);
|
||||
|
|
Loading…
Reference in a new issue