Fixed some potentially serious thread cancellation issues. Also, it's not clear to me that we really need to override the addNotify() method in this case. jrg

git-svn-id: svn://10.0.0.236/trunk@91690 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
talisman%anamorphic.com 2001-04-08 09:53:30 +00:00
parent 87f636ebc1
commit a3e566e367

View File

@ -779,7 +779,7 @@ public class AddressList extends JScrollPane implements Serializable {
* addNotify creates the preferred size dimension because only
* after the peer has been created can we get the font metrics.
*/
public void addNotify () {
/* public void addNotify () {
super.addNotify ();
if (null == mPerfSize) {
@ -795,6 +795,7 @@ public class AddressList extends JScrollPane implements Serializable {
}
}
}
*/
/**
* Return PerfSize created in addNotify.