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 164572 Details for
Bug 304780
Eclipse hangs while using FileDialog
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 v01
Accessibility_FileDialogHang.txt (text/plain), 1.07 KB, created by
Praveen
on 2010-04-12 11:14:17 EDT
(
hide
)
Description:
Patch v01
Filename:
MIME Type:
Creator:
Praveen
Created:
2010-04-12 11:14:17 EDT
Size:
1.07 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.swt >Index: Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java,v >retrieving revision 1.42 >diff -u -r1.42 AccessibleFactory.java >--- Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java 9 Apr 2010 20:39:24 -0000 1.42 >+++ Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java 12 Apr 2010 15:11:27 -0000 >@@ -283,7 +283,12 @@ > } > > static int /*long*/ getParentType (int /*long*/ widgetType) { >- return ((LONG) Factories.get(new LONG(widgetType))).value; >+ LONG type = null; >+ while (widgetType != 0 && (type = (LONG)Factories.get(new LONG(widgetType))) == null) { >+ widgetType = OS.g_type_parent (widgetType); >+ } >+ if (type == null) return 0; >+ return ((LONG)type).value; > } > > static int /*long*/ atkObjectFactory_create_accessible (int /*long*/ widget) {
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 304780
:
161095
|
164107
| 164572