Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 153364 Details for
Bug 291128
[Widgets] eclipse >= 3.5 crash when closing a first level modal window (Install, Run Configurations)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
patch
PR291128.patch (text/plain), 1.17 KB, created by
Silenio Quarti
on 2009-11-30 12:21:51 EST
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Silenio Quarti
Created:
2009-11-30 12:21:51 EST
Size:
1.17 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.swt >Index: Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java,v >retrieving revision 1.48 >diff -u -r1.48 AccessibleObject.java >--- Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java 1 Jul 2009 14:50:45 -0000 1.48 >+++ Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java 30 Nov 2009 17:14:40 -0000 >@@ -1176,7 +1176,12 @@ > } > > static AccessibleObject getAccessibleObject (int /*long*/ atkObject) { >- return (AccessibleObject)AccessibleObjects.get (new LONG (atkObject)); >+ AccessibleObject object = (AccessibleObject)AccessibleObjects.get (new LONG (atkObject)); >+ if (object == null) return null; >+ if (object.accessible == null) return null; >+ Control control = object.accessible.control; >+ if (control == null || control.isDisposed()) return null; >+ return object; > } > > AccessibleObject getChildByHandle (int /*long*/ handle) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 291128
:
148593
|
148594
|
148597
|
148731
|
153364
|
156135