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 156135 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 for 3.5.2
PR291128.patch (text/plain), 1.57 KB, created by
Silenio Quarti
on 2010-01-14 14:12:46 EST
(
hide
)
Description:
patch for 3.5.2
Filename:
MIME Type:
Creator:
Silenio Quarti
Created:
2010-01-14 14:12:46 EST
Size:
1.57 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.46 >diff -u -r1.46 AccessibleObject.java >--- Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java 29 May 2009 21:30:30 -0000 1.46 >+++ Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java 14 Jan 2010 19:11:16 -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) { >@@ -1252,7 +1257,7 @@ > GObjectClass objectClassStruct = new GObjectClass (); > ATK.memmove (objectClassStruct, gObjectClass); > ATK.call (objectClassStruct.finalize, atkObject); >- AccessibleObject object = getAccessibleObject (atkObject); >+ AccessibleObject object = (AccessibleObject)AccessibleObjects.get (new LONG (atkObject)); > if (object != null) { > AccessibleObjects.remove (new LONG (atkObject)); > object.release ();
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