issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
86,745 | Bug 86745 Tree shows horizontal scrollbar although not required | null | resolved fixed | 9901dd4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-07T13:54:51Z" | "2005-02-26T12:13:20Z" |
239,231 | Bug 239231 Text.getCaretLineNumber() differs between Windows and Linux | Build ID: M20080221-1800 Steps To Reproduce: 1. Run attached test case on linux (I used redhat linux 5) 2. Click in text box - label displays "Caret line number is: 1" 3. Run same test case on windows: Label displays "Caret line number is: 0" More information: I would expect the line number to be 0 in both cases (as most positioning in Java is 0 based). | resolved fixed | 5976441 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-03T21:16:29Z" | "2008-07-02T12:00:00Z" |
236,312 | Bug 236312 GTK Assertion for gdk_window_get_user_data | null | resolved fixed | fc78f2f | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-03T20:21:33Z" | "2008-06-09T19:33:20Z" |
239,220 | Bug 239220 Text.getText() returns empty string after calling setText() with non-empty string | Here is the (new as of June 23rd) code for Text on Carbon: public String getText () { checkWidget(); if (txnObject == 0) { return new String (getEditText (0, -1)); } else { return getTXNText (OS.kTXNStartOffset, OS.kTXNEndOffset); } } char [] getEditText (int start, int end) { int [] ptr = new int [1]; int [] actualSize = new int [1]; int result = OS.GetControlData (handle, (short)OS.kControlEntireControl, OS.kControlEditTextCFStringTag, 4, ptr, actualSize); if (result != OS.noErr) return new char [0]; int length = OS.CFStringGetLength (ptr [0]); end = Math.min (end, length - 1); if (start > end) return new char [0]; // method continues ... If txnObject == 0, getText() calls getEditText(0, -1) which returns an empty result if start > end. But start is 0 and end is -1, hence 0 > -1 is true, which cannot be right. This has caused the Mac-specific data binding test failures over the last couple of days, and also may have caused the other UI test failures on the Mac. | resolved fixed | d2c1767 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-03T17:00:16Z" | "2008-07-02T12:00:00Z" |
211,202 | Bug 211202 StyledText#setSelection() does not reveal caret with non-zero selection | null | resolved fixed | fc0ac2f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-02T16:30:33Z" | "2007-11-28T11:40:00Z" |
238,847 | Bug 238847 Improve performance of shell creation on GTK | We have a benchmark that did "new Shell()" that was slower on GTK than Windows. Here is how we fixed it: Shell creation on a single monitor system takes longer then it needs to. It calls gdk_screen_get_monitor_at_window() when there is only ever one monitor possible. We optimized this case. | resolved fixed | 36bf32c | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-27T20:52:20Z" | "2008-06-27T20:53:20Z" |
233,261 | Bug 233261 dialog window distorted after going out of "Not responding" state | null | resolved fixed | 5124c10 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-27T16:35:47Z" | "2008-05-21T14:26:40Z" |
226,369 | Bug 226369 [Browser] Provide a way to know which rendering is used | Build ID: 3.4M6 We pilot the browser with Javascript so we need to know the rendering to take the differences into account. We can achieve this distinction with a mix of SWT.getPlatform() and browser.getStyle(). However, it would be much better to have a clear way to know the rendering, something like "Browser.getBrowserType()" which would return SWT.IE, SWT.MOZILLA, SWT.SAFARI, etc. | resolved fixed | 2b38142 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WebBrowser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/forms/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/photon/org/eclipse/swt/browser/Voyager.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/wpf/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-26T17:55:53Z" | "2008-04-09T19:40:00Z" |
211,363 | Bug 211363 Weird resize behaviour in paint example | Run paint example Resize window a little -> paint area disappears completely, never to come back again | resolved fixed | 3f452be | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scale.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-24T16:45:16Z" | "2007-11-29T01:33:20Z" |
238,149 | Bug 238149 Rollover tooltip for owner-drawn tree should be hidden when tree view changes | null | resolved fixed | 1975293 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-23T21:28:04Z" | "2008-06-23T16:53:20Z" |
127,971 | Bug 127971 Cannot remove caret in FocusOut handler | SWT-win32, v3224 - Run the test case below - The canvas on the left will initially have focus - Click on the button to make the canvas lose focus - Even though the caret is removed in the focus lost handler, it won't go away Note: I am aware that a caret will automatically be hidden on focus lost; The snippet below intentionally tries to completely remove it. --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class CaretTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Canvas canvas = new Canvas(shell, SWT.NONE); final Caret caret = new Caret(canvas, SWT.NONE); caret.setBounds(32, 32, 1, 16); canvas.addListener(SWT.KeyDown, new Listener() { public void handleEvent(Event e) { } }); canvas.addListener(SWT.FocusOut, new Listener() { public void handleEvent(Event e) { System.out.println("Canvas has lost focus"); canvas.setCaret(null); caret.dispose(); } }); new Button(shell, SWT.PUSH).setText("Button"); shell.setSize(200, 150); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | cc93598 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-20T21:14:02Z" | "2006-02-15T05:06:40Z" |
237,986 | Bug 237986 XULRunner 1.9 sometimes crashes at shutdown | - only observed with XULRunner 1.9 on Windows - run snippet128, click around in the Browser, and close the Shell - this sometimes crashes, but does not produce an hs_err_* file | resolved fixed | e499c52 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-20T20:24:49Z" | "2008-06-20T19:26:40Z" |
125,499 | Bug 125499 Pixel corruption when setSelection() called from within SWT.SetData | Using I20060125-0800, while debugging, I sometimes get an erratic behavior when scrolling in debug or variable view. The labels in the view are incomplete on the first letter and the scrolling doesn't work. As soon as I released the mouse or stop using the rolling button on the mouse, the view jumps at the previous location. It is difficult to explain what happens exactly. I also don't have reproducable steps. It happens in an erratic and unpredicatable way. I didn't get this behavior with previous integration builds. | resolved fixed | 3c09346 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T21:10:50Z" | "2006-01-27T16:40:00Z" |
54,525 | Bug 54525 Radio group gets traversed (gets focus) when not visible | When you traverse controls with TAB, controls that are not visible do not get focus. This is great because I use custom controls that can collapse and I don't want their children to be traversed then. Unfortunately, this doesn't work for radio groups, which still get focus. Below is a snippet that shows the problem. Use the toggle button to show / hide some of the controls by collapsing their parent composite. When all the controls are visible, they're traversed in the following order: Button 1, Radio 1, Button 2, Button 3. However, when only Button 1 and Button 3 are visible, the order is: Button 1, Radio 1, Button 3 (Radio 1 shouldn't be traversed, Button 2 is not). I've found out that this is the Control.isShowing() method that checks whether the control is visible. This however is referenced only in Control.setTabItemFocus(), and that is always called from Control.setTabGroupFocus() BUT not always from Composite.setTabGroupFocus(). So maybe Button.setRadioFocus() should call Control.isShowing(). import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class Main { private static DisapperingComposite dComposite; public static void main(String[] args) { final Display display = Display.getDefault(); final Shell shell = new Shell(SWT.DIALOG_TRIM); shell.setLayout(new GridLayout(3, false)); GridData gridData = new GridData(GridData.FILL_BOTH); gridData.horizontalSpan = 3; final Button button = new Button(shell, SWT.TOGGLE); button.setLayoutData(gridData); button.setSelection(true); button.setText("Show / Hide"); button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { if (((Button) e.widget).getSelection()) { dComposite.appear(); } else { dComposite.disappear(); } } }); final Button button1 = new Button(shell, SWT.NONE); button1.setText("Button 1"); button1.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { System.out.println("Button 1 gains focus"); } }); dComposite = new DisapperingComposite(shell, SWT.BORDER); dComposite.setLayout(new RowLayout()); final Button radio1 = new Button(dComposite, SWT.RADIO); radio1.setText("Radio 1"); radio1.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { System.out.println("Radio 1 gains focus"); } }); final Button button2 = new Button(dComposite, SWT.NONE); button2.setText("Button 2"); button2.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { System.out.println("Button 2 gains focus"); } }); final Button radio2 = new Button(dComposite, SWT.RADIO); radio2.setText("Radio 2"); radio2.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { System.out.println("Radio 2 gains focus"); } }); final Button button3 = new Button(shell, SWT.NONE); button3.setText("Button 3"); button3.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { System.out.println("Button 3 gains focus"); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } } class DisapperingComposite extends Composite { private boolean visible = true; public DisapperingComposite(Composite parent, int style) { super(parent, style); } public void appear() { visible = true; getParent().pack(); } public void disappear() { visible = false; getParent().pack(); } public Rectangle computeTrim(int x, int y, int width, int height) { if (visible) return super.computeTrim(x, y, width, height); else return new Rectangle(x, y, 0, 0); } } | resolved fixed | 6cb5941 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T20:55:14Z" | "2004-03-11T21:20:00Z" |
236,937 | Bug 236937 Composite sending incorrect Move events | null | resolved fixed | f726f3b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T20:49:40Z" | "2008-06-12T17:00:00Z" |
226,090 | Bug 226090 Clarify/improve TextLayout.setText(String) | 3.4 M6. TextLayout.setText(String) has two undocumented side effects: 1. if the new string is not the same as the old one it sets the text *and* it resets all the style information 2. if the new string is the same it does nothing Currently - as there is no reset[Styles]() method clients have to read the code and then do the following to reset their text layout in order to reuse it: textLayout.setText(""); // ensure styles get cleared textLayout.setText(realText); A good fix for me would be: 1. document that setText also clears the style information 2. always clear the style information. I guess that is what clients would expect | resolved fixed | bbcbb07 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T20:04:00Z" | "2008-04-08T07:33:20Z" |
237,138 | Bug 237138 StyledText blank in Linux RedHat | null | resolved fixed | 5a6cf47 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T19:22:45Z" | "2008-06-13T18:00:00Z" |
237,675 | Bug 237675 Giving focus to other control during FocusIn doesn't reassign the Caret | Build 3.4 RC4 Run the snippet and type something. -> the chars are insert in the text control but the caret is over the canvas - and moves along as chars are insert/delete. | resolved fixed | de21f7f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T19:11:36Z" | "2008-06-18T17:26:40Z" |
236,689 | Bug 236689 [Browser] KeyDown/KeyUp events have wrong character for Delete key | - happens with IE and Safari, works with Mozilla | resolved fixed | 6690d67 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T18:30:27Z" | "2008-06-11T18:46:40Z" |
236,524 | Bug 236524 [Help browser] Search does not start on pressing <Enter> | Eclipse 3.4 RC3 Here. the help search does not start anymore in the help browser when entering a search term in the search box on top and hitting <Enter>. | verified fixed | e7e4bd6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-18T18:27:52Z" | "2008-06-10T20:33:20Z" |
237,432 | Bug 237432 [64] Add External JARs in Java Build Path fails consistently | Build ID: I20080609-1311 Steps To Reproduce: 1. Create a new Workspace 2. Create a Java Project 3. Go to Properties | Build Path and try to add an external jar. 4. Nothing happens, but an exception is logged in the Error Log. More information: Note: 64-bit build and 64-bit W2K3 OS. And I have removed that p2 package. eclipse.buildId=I20080207-1530 java.version=1.6.0_03 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=sv_SE Command-line arguments: -os win32 -ws win32 -arch x86_64 Error Tue Jun 17 09:30:33 CEST 2008 Unhandled event loop exception java.lang.NoSuchMethodError: OFNHookProc at org.eclipse.swt.internal.Callback.bind(Native Method) at org.eclipse.swt.internal.Callback.<init>(Callback.java:117) at org.eclipse.swt.internal.Callback.<init>(Callback.java:72) at org.eclipse.swt.internal.Callback.<init>(Callback.java:54) at org.eclipse.swt.widgets.FileDialog.open(FileDialog.java:334) at org.eclipse.jdt.ui.wizards.BuildPathDialogAccess.chooseExternalJAREntries(BuildPathDialogAccess.java:437) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.openExtJarFileDialog(LibrariesWorkbookPage.java:783) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.libaryPageCustomButtonPressed(LibrariesWorkbookPage.java:255) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.access$0(LibrariesWorkbookPage.java:248) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage$LibrariesAdapter.customButtonPressed(LibrariesWorkbookPage.java:197) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.buttonPressed(TreeListDialogField.java:168) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.doButtonSelected(TreeListDialogField.java:386) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.access$2(TreeListDialogField.java:382) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField$2.widgetSelected(TreeListDialogField.java:347) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:157) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:583) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) | resolved fixed | 1802dd1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-17T18:09:49Z" | "2008-06-17T08:06:40Z" |
225,265 | Bug 225265 Cannot invoke a contextual menu from a perspective button. | Attempting to invoke a contextual menu from a perspective button in order to reset/customize/close/etc. the perspective has no effect. | resolved fixed | 0d62abd | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T19:36:53Z" | "2008-04-02T07:06:40Z" |
230,120 | Bug 230120 Mouse scrolling support in Cocoa applications | null | resolved fixed | 0479445 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T19:31:43Z" | "2008-05-04T14:06:40Z" |
230,118 | Bug 230118 Typing in StyledText is accompanied with the error bell (Cocoa) | StyledText on Cocoa isn't usable since on every key press the error bell is played. After short debugging I had found that keyboard events sent to all Canvas-based controls are forwarded to NSWindow via super.windowSendEvent(id, event) call. NSView which is a base for Canvas doesn't handle them so the system plays the error bell. The attached patch solves this problem by overriding sendKeyEvent(NSEvent nsEvent, int type) method in the Canvas class and making it return "false", what blocks further processing of the event. | resolved fixed | f820540 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T18:32:52Z" | "2008-05-04T14:06:40Z" |
237,106 | Bug 237106 Composites with GridLayouts don't lay out | - to see this run Snippet6 - this appears to have been introduced by changes made since v3448e was tagged | resolved fixed | bba33a1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T18:05:10Z" | "2008-06-13T15:13:20Z" |
223,391 | Bug 223391 unable to change button sizes | Build ID: I20080207-1530 Steps To Reproduce: 1. open control example 2. select Button tab 3. in Size section, select Preferred , 10X10 , 50X50 , and 100X100 radio buttons More information: Choosing any of these sizes has no effect on any kind of buttons | resolved fixed | b61c3f1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T16:23:24Z" | "2008-03-20T19:06:40Z" |
210,988 | Bug 210988 setEnabled() does not work for Widgets that are not NSControl | Group, ToolBar, ProgressBar, Label, Composite and a few other widgets that are not subclasses NSControl need to somehow reimplement Control.enableWidget(boolean). | resolved fixed | 211a0b5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T15:38:58Z" | "2007-11-26T20:46:40Z" |
223,390 | Bug 223390 flat and border button in swt do not work | Build ID: I20080207-1530 Steps To Reproduce: 1. open control example 2. select Button tab 3. In Style, select SWT.FLAT and SWT.BORDER check boxes More information: When either or both SWT.FLAT and SWT.BORDER check boxes are checked, not changes to the buttons. | resolved fixed | 3f8e43b | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-13T15:33:04Z" | "2008-03-20T19:06:40Z" |
236,669 | Bug 236669 exception when removing TableItem | 3.4RC4 - brand new eclipse workspace - File > Import... - Plug-in Development > Plug-ins and Fragments, Next - Next - select org.eclipse.jface from the left-side list, press the "Add -->" button, which moves this item to the right-side list - press the "Required Plug-ins -->" button, which moves a few other projects over to the right-side list -> NOTE that the org.eclipse.jface item has disappeared from the right-side list but shouldn't have - now press the "<-- Remove All" button, and you'll get the error below, possibly a side-effect of the disappeared org.eclipse.jface item: org.eclipse.swt.SWTError: Item not removed at org.eclipse.swt.SWT.error(SWT.java:3803) at org.eclipse.swt.SWT.error(SWT.java:3695) at org.eclipse.swt.SWT.error(SWT.java:3666) at org.eclipse.swt.widgets.Widget.error(Widget.java:681) at org.eclipse.swt.widgets.Table.remove(Table.java:2506) at org.eclipse.jface.viewers.TableViewer.doRemove(TableViewer.java:268) at org.eclipse.jface.viewers.AbstractTableViewer.internalRemove(AbstractTableViewer.java:788) at org.eclipse.jface.viewers.AbstractTableViewer.access$0(AbstractTableViewer.java:751) at org.eclipse.jface.viewers.AbstractTableViewer$3.run(AbstractTableViewer.java:818) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1365) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1328) at org.eclipse.jface.viewers.AbstractTableViewer.remove(AbstractTableViewer.java:816) at org.eclipse.jface.viewers.AbstractTableViewer.remove(AbstractTableViewer.java:840) at org.eclipse.pde.internal.ui.wizards.imports.PluginImportWizardDetailedPage.doRemove(PluginImportWizardDetailedPage.java:543) at org.eclipse.pde.internal.ui.wizards.imports.PluginImportWizardDetailedPage.handleRemoveAll(PluginImportWizardDetailedPage.java:566) at org.eclipse.pde.internal.ui.wizards.imports.PluginImportWizardDetailedPage.access$13(PluginImportWizardDetailedPage.java:554) at org.eclipse.pde.internal.ui.wizards.imports.PluginImportWizardDetailedPage$13.widgetSelected(PluginImportWizardDetailedPage.java:355) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3474) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3064) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:146) at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:273) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:281) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:247) at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:583) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3474) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3064) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) | resolved fixed | 9bc0098 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-11T20:23:44Z" | "2008-06-11T16:00:00Z" |
236,419 | Bug 236419 Printing does NOT work on Mac | Build ID: I20080530-1730 Steps To Reproduce: 1. Open a file with Text Editor 2. Select print from the toolbar Notice, that it doesn't print. The failure is in Print.java on line 367. It throws a NullPointer exception. The logic seems flawed because this method is trying to set the defaultFont. What's strange is the systemFont is null, yet the way you get the systemFont is to call getSystemFont(). But, this method will return the defaultFont, which is the very thing we're trying to set originally. More information: I'm using Java 5 on Mac OS X 10.5.3. | resolved fixed | e24f72d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/carbon/org/eclipse/swt/printing/Printer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-10T20:15:47Z" | "2008-06-10T12:13:20Z" |
232,689 | Bug 232689 Label.setText() hides the label if called multiple times | null | resolved fixed | 3251985 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-09T20:37:19Z" | "2008-05-18T08:40:00Z" |
235,847 | Bug 235847 [Contributions] [Mac] Odd behaviour in help menu on OS X | I20080604-2000 I'm not even sure how to classify this bug. There are numerous bad things all happening at once. Steps to reproduce: 1) open the team synch view in change set mode (and have some change sets) 2) select one of the top level change sets 3) open the help menu Note that the menu is empty and not only that the content of the team view disappears! If you dismiss the menu the content returns. Opening the log you find the following stack: java.lang.ArrayStoreException at java.lang.System.arraycopy(Native Method) at org.eclipse.ui.internal.actions.ModifyWorkingSetDelegate.getItems(ModifyWorkingSetDelegate.java:260) at org.eclipse.ui.internal.actions.ModifyWorkingSetDelegate.fillMenu(ModifyWorkingSetDelegate.java:196) at org.eclipse.ui.internal.actions.AbstractWorkingSetPulldownDelegate$1.menuShown(AbstractWorkingSetPulldownDelegate.java:98) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:235) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1566) at org.eclipse.swt.widgets.Menu.kEventMenuOpening(Menu.java:803) at org.eclipse.swt.widgets.Widget.menuProc(Widget.java:1317) at org.eclipse.swt.widgets.Display.menuProc(Display.java:2861) at org.eclipse.swt.internal.carbon.OS.MenuSelect(Native Method) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2891) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3047) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2387) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2203) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) Problem 1: The working set delegate handler assumes (because of it's enablement clause) that if it is filling a menu it is doing it because the selections are adaptable. In this case, the selection is NOT adaptable (for unknown reasons) so the code fails. Problem 2: A bad delegate can destroy the menu. Problem 3: For some reason menushown is being invoked by SWT on a menu that ISN'T being shown. This is what puts us in the position where #1 is possible. Problem 4: The view content disappears. I dont even know where to start with this one... | resolved fixed | 5f3a843 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-05T21:17:45Z" | "2008-06-05T15:33:20Z" |
235,806 | Bug 235806 improper usage of "Device" when setting font description in org.eclipse.swt.graphics.TextLayout constructor | Build ID: I20080516-1333 Steps To Reproduce: This defect mainly shows up on RetHat Linux 5. The constructor is coded-up like this: public TextLayout (Device device) { super(device); context = OS.gdk_pango_context_get(); if (context == 0) SWT.error(SWT.ERROR_NO_HANDLES); OS.pango_context_set_language(context, OS.gtk_get_default_language()); OS.pango_context_set_base_dir(context, OS.PANGO_DIRECTION_LTR); OS.gdk_pango_context_set_colormap(context, OS.gdk_colormap_get_system()); layout = OS.pango_layout_new(context); if (layout == 0) SWT.error(SWT.ERROR_NO_HANDLES); OS.pango_layout_set_font_description(layout, device.systemFont.handle); OS.pango_layout_set_wrap(layout, OS.PANGO_WRAP_WORD_CHAR); OS.pango_layout_set_tabs(layout, this.device.emptyTab); if (OS.GTK_VERSION >= OS.VERSION(2, 4, 0)) { OS.pango_layout_set_auto_dir(layout, false); } text = ""; ascent = descent = -1; styles = new StyleItem[2]; styles[0] = new StyleItem(); styles[1] = new StyleItem(); init(); } There is a problem with this code specifically in the following line: OS.pango_layout_set_font_description(layout, device.systemFont.handle); Here is the FIX: Instead of "device.systemFont.handle", it should be "this.device.systemFont.handle". This is because if the input parameter "device" in the constructor gets the value as null, then Resource class will execute Device.getDevice() to retrieve the device. And hence, the above code should be changed to reflect this value of the device. More information: Due to this, Arabic Language is not active/enabled in Rational Application Developer on RedHat Linux and incase, you have access to RATLC, here is the defect number: RATLC01167844 - BIDIAM75: Page Designer inactive on Arabic locale | resolved fixed | 5a9f76e | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-05T15:48:36Z" | "2008-06-05T12:46:40Z" |
164,437 | Bug 164437 Disable automatic horizontal scrolling on tree item selection | null | resolved fixed | 481b972 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-04T17:04:21Z" | "2006-11-14T07:40:00Z" |
235,617 | Bug 235617 The visibility of the constructor org.eclipse.swt.graphics.Resource.Resource() has been reduced | In the 3.4 stream, a default constructor was added to Resource that is only package visible. Before it was added, there were no constructors in the class so the new constructor reduces the visibility of the default constructor from public to package. | resolved fixed | 0619707 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/Resource.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-04T16:51:31Z" | "2008-06-04T14:33:20Z" |
235,329 | Bug 235329 vertical scroll bar remains in empty tree viewer | null | resolved fixed | 3526517 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-03T17:46:40Z" | "2008-06-03T13:33:20Z" |
235,348 | Bug 235348 Exception in setItemCount | calling setItemCount(0) causes this exception. java.lang.ArrayIndexOutOfBoundsException: 100 at org.eclipse.swt.widgets.Tree.setItemCount(Tree.java:3023) at org.eclipse.swt.widgets.Tree.setItemCount(Tree.java:2997) at Stub.main(Stub.java:19) | resolved fixed | 750f6b6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-03T15:56:17Z" | "2008-06-03T13:33:20Z" |
235,324 | Bug 235324 Canvas#getCaret() should tell that caret can be null | I20080530-1730 Canvas#getCaret() should tell that the caret can be null. This snippet produces an NPE: Display display = new Display(); Shell shell = new Shell(display); Point size= shell.getCaret().getSize(); | resolved fixed | b3191bd | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-03T13:50:19Z" | "2008-06-03T13:33:20Z" |
227,914 | Bug 227914 IAE in TextLayout._getOffset() | Got this reported with 3.3.1 and 3.3.2 (stacktrace is from 3.3.1). Couldn't reproduce myself, steps to reproduce we received: 1. Type line 1 to almost fill an entire line 2. CR to new line, type something 3. Cursor up (and to the end) of line 1, and type until word wrap occurs. -> You should now only have a few characters on the newly visible line 2 with your cursor at the end of it (that's really wrap of line 1) 4. Backspace until it should revert back to one line. java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3547) at org.eclipse.swt.SWT.error(SWT.java:3481) at org.eclipse.swt.SWT.error(SWT.java:3452) at org.eclipse.swt.graphics.TextLayout._getOffset(TextLayout.java:1437) at org.eclipse.swt.graphics.TextLayout.getPreviousOffset(TextLayout.java:1643) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2106) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:5645) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5033) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5054) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4800) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:947) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:975) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:971) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1285) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3772) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3672) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:291) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4351) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2178) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java:649) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2264) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3291) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | resolved fixed | 989cc69 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-02T20:59:43Z" | "2008-04-20T14:00:00Z" |
235,219 | Bug 235219 Cheese in tree | null | resolved fixed | a7e3a11 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-02T20:58:58Z" | "2008-06-02T20:53:20Z" |
232,685 | Bug 232685 ScrollBar works incorrectly with StyledText | null | resolved fixed | 9ca4ea6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-02T18:31:39Z" | "2008-05-18T08:40:00Z" |
232,686 | Bug 232686 Shell doesn't send SWT.Move | null | resolved fixed | 17e81e2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-02T16:01:50Z" | "2008-05-18T08:40:00Z" |
219,437 | Bug 219437 Javadocs of get/setAlpha(..) should specify range of value | HEAD The Javadocs of all get/setAlpha(..) APIs (on Shell, GC, ImageData) should better specify the "alpha value": - allowed range - meaning (is 0 fully opaque and 255 fully transparent or vice versa?) ImageData.setAlpha(..) even throws an IAE when alpha is not in [0, 255], but this is not in the Javadoc. | resolved fixed | 152b200 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/ImageData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-06-02T14:39:35Z" | "2008-02-19T14:06:40Z" |
217,378 | Bug 217378 Event fields javadoc needs update due to ImeComposition event | Javadoc for the following org.eclipse.swt.widgets.Event fields: start, end, index, count now needs to mention that they can be set in the event handler. Returned values are used by the ImeComposition event. | resolved fixed | 5267279 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/widgets/Event.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-30T20:21:35Z" | "2008-02-01T04:26:40Z" |
233,844 | Bug 233844 CTabFolder#setSelection(CTabItem) IllegalArgumentException is wrong | Currently: ---------- @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> Should be: ---------- @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the item is null</li> * </ul> | resolved fixed | 15dbeb4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-30T16:20:25Z" | "2008-05-25T12:53:20Z" |
234,823 | Bug 234823 JavaDoc: ExpandBar#setSpacing doesn't describe the parameter passed | Maybe this is once more a worksforyou because the doc on OS-X is not up-to-date. | resolved fixed | 43b37a6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ExpandBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-30T14:26:54Z" | "2008-05-30T12:20:00Z" |
234,732 | Bug 234732 WRAP break font fallback , DBCS does not show | null | resolved fixed | fb11748 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-29T21:39:51Z" | "2008-05-29T22:26:40Z" |
234,437 | Bug 234437 CCombo#setVisible() doesn't check if the popup shell is disposed | Before call CCombo#setVisible(false) we are checking if the CCombo is not already disposed. I guess CCombo Line 1539: -------8<------- if (!visible) popup.setVisible(false); -------8<------- Should have a check like this: -------8<------- if (!visible && popup != null && !popup.isDisposed()) popup.setVisible(false); -------8<------- The Exception: -------------- Exception in thread "main" org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3775) at org.eclipse.swt.SWT.error(SWT.java:3693) at org.eclipse.swt.SWT.error(SWT.java:3664) at org.eclipse.swt.widgets.Widget.error(Widget.java:462) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:335) at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1712) at org.eclipse.swt.custom.CCombo.setVisible(CCombo.java:1539) at org.eclipse.jface.viewers.CellEditor.deactivate(CellEditor.java:274) at org.eclipse.jface.viewers.CellEditor.deactivate(CellEditor.java:922) at org.eclipse.jface.viewers.ColumnViewerEditor.cancelEditing(ColumnViewerEditor.java:402) at org.eclipse.jface.viewers.ColumnViewerEditor$1.widgetDisposed(ColumnViewerEditor.java:133) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:116) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1007) at org.eclipse.swt.widgets.Widget.release(Widget.java:803) at org.eclipse.swt.widgets.Table.releaseChildren(Table.java:2831) at org.eclipse.swt.widgets.Widget.release(Widget.java:806) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:755) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:171) at org.eclipse.swt.widgets.Decorations.releaseChildren(Decorations.java:770) at org.eclipse.swt.widgets.Shell.releaseChildren(Shell.java:1207) at org.eclipse.swt.widgets.Widget.release(Widget.java:806) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:440) at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:445) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:671) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:307) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1631) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3784) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1564) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1932) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4506) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2341) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:474) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3872) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1564) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1932) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4506) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2341) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:474) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3872) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1564) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1932) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4506) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2346) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3398) at org.eclipse.jface.snippets.viewers.Snippet034CellEditorPerRowNewAPI.main(Snippet034CellEditorPerRowNewAPI.java:187) | resolved fixed | 8b0ef9c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-29T21:11:52Z" | "2008-05-28T18:40:00Z" |
223,823 | Bug 223823 ControlExample: Select Listeners dialog opens behind menu bar | null | resolved fixed | 9aaf151 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/Tab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-29T18:46:47Z" | "2008-03-25T13:00:00Z" |
234,271 | Bug 234271 Invalid thread access logged in the .log file | I got this: org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:3775) at org.eclipse.swt.SWT.error(SWT.java:3693) at org.eclipse.swt.SWT.error(SWT.java:3664) at org.eclipse.swt.widgets.Display.error(Display.java:1158) at org.eclipse.swt.widgets.Display.checkDevice(Display.java:683) at org.eclipse.swt.widgets.Display.map(Display.java:2750) at org.eclipse.ui.internal.presentations.PaneFolder.layout(PaneFolder.java:524) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.layout(DefaultTabFolder.java:382) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.layout(PresentablePartFolder.java:408) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:292) at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1209) at org.eclipse.ui.internal.PerspectiveHelper.bringPartToTop(PerspectiveHelper.java:443) at org.eclipse.ui.internal.Perspective.bringToTop(Perspective.java:217) at org.eclipse.ui.internal.WorkbenchPage.internalBringToTop(WorkbenchPage.java:792) at org.eclipse.ui.internal.WorkbenchPage.activate(WorkbenchPage.java:609) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:1086) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:1057) at org.eclipse.ui.internal.WorkbenchPage$19.run(WorkbenchPage.java:3773) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3770) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3746) at org.eclipse.ui.internal.progress.ProgressManagerUtil.openProgressView(ProgressManagerUtil.java:129) at org.eclipse.ui.internal.progress.ProgressRegion.processDoubleClick(ProgressRegion.java:199) at org.eclipse.ui.internal.progress.ProgressRegion$3.mouseDoubleClick(ProgressRegion.java:163) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:182) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3801) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3400) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2387) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2203) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:612) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) using eclipse.buildId=I20080523-0100 java.fullversion=J2RE 1.6.0 IBM J9 2.4 Windows XP x86-32 jvmwi3260-20071121_15015 (JIT enabled) J9VM - 20071121_015015_lHdSMR JIT - r9_20071121_1330 GC - 20071031_AA BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_CA Command-line arguments: -os win32 -ws win32 -arch x86 -consolelog -console Right after this, I got the NPE reported earlier. | resolved fixed | 82b24e6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-28T22:40:14Z" | "2008-05-27T23:13:20Z" |
233,638 | Bug 233638 Extreme performance degradation in TextLayout.shape() | I20080522-1800. I accidentally opened a small binary file (81KB) in the text editor which resulted in a very long freeze (40-50s). Afterwards typing, selecting etc. is unusably slow. Performance tracing reveals that all time is spent in TextLayout.shape(). Note that this is a huge regression compared to R3.3.x: there the file opens immediately and the editor is responsive. 1. download attached test file 2. add it to a workspace 3. open it with the default text editor | verified fixed | e42c019 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-28T22:22:50Z" | "2008-05-23T10:53:20Z" |
234,158 | Bug 234158 StyledText should stop blinking caret when losing focus in verify key listener | I20080526-2000, same in 3.3.2 StyledText should stop blinking the caret when losing focus in verify key listener. Run the snippet below and then press Tab. => Expected: Focus goes to popup shell, caret stops blinking (like when you click into the popup). => Was: Focus goes to popup shell, but caret still blinks. When "proposalsShell.setActive()" is executed in an asyncExec, the behavior is as expected. public class SnippetTransferFocus { public static void main(String[] args) { final Display display= new Display(); final Shell shell= new Shell(display); shell.setLayout(new FillLayout()); StyledText text= new StyledText(shell, SWT.NONE); text.setText("Press Tab or click proposals table"); shell.setBounds(100, 100, 320, 100); shell.open(); final Shell proposalsShell= new Shell(shell, SWT.ON_TOP | SWT.RESIZE); proposalsShell.setLayout(new FillLayout()); Table table= new Table(proposalsShell, SWT.H_SCROLL | SWT.V_SCROLL); new TableItem(table, SWT.NONE).setText("Item 1"); new TableItem(table, SWT.NONE).setText("Item 2"); table.select(0); proposalsShell.setBounds(150, 150, 160, 100); proposalsShell.setVisible(true); text.addVerifyKeyListener(new VerifyKeyListener() { public void verifyKey(VerifyEvent event) { if (event.keyCode == SWT.TAB) { event.doit= false; proposalsShell.setActive(); // display.asyncExec(new Runnable() { // public void run() { // proposalsShell.setActive(); // } // }); } } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | verified fixed | 3a3b000 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-28T20:55:15Z" | "2008-05-27T14:53:20Z" |
234,433 | Bug 234433 [Browser] Some characters cannot be entered in forms | Build ID: 3.4M7 Steps To Reproduce: 1. Open a Shell with a Browser. 2. Go to a page with forms or text fields (like Google home page). 3. Try to type the character ń (AltGr+n) which does not work. AltGr is the right Alt key, usually equivalent to Ctrl+Alt. More information: This bug was reported by a user and after investigation here is all the information we have. - The user is Polish and cannot enter 1 out of 9 national characters: ą (AltGr+a), ę (AltGr+e), ś (AltGr+s), ć (AltGr+c), ż (AltGr+z), ź (AltGr+x), o (AltGr+o) and ł (AltGr+l) work but ń (AltGr+n) does not. - It is a regression: replacing the SWT JAR from 3.4M7 to 3.3.2 seems to solve that particular issue. - This issue seems to affect the Browser only as this character can be entered in a Text widget. - This character can be entered in Firefox or Internet Explorer (when it is not in an SWT application). This is a major issue as 3.3.2 cannot be used due to other functionalities and bug fixes. | resolved fixed | 73a84b5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-28T20:06:17Z" | "2008-05-28T18:40:00Z" |
234,119 | Bug 234119 Segfault when disposing shell in keylistener of browser | null | verified fixed | 0657c29 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-27T14:45:16Z" | "2008-05-27T09:20:00Z" |
233,598 | Bug 233598 carriage return inserted twice when using text box in web browser | null | resolved fixed | 7c93e3a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-26T21:25:28Z" | "2008-05-22T23:46:40Z" |
233,867 | Bug 233867 Text#getPosition() is missing JavaDoc | like the summary says there's no JavaDoc for this method | resolved fixed | 4de988f | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-26T19:59:15Z" | "2008-05-25T18:26:40Z" |
233,969 | Bug 233969 NPE in Tree.windowProc when starting to drag elements | I20080523-0100 I got into a state where dragging any element from the Synchronize view resulted in the NPE below. Drag and drop from the Synchronize view to the editor area worked fine before. Worked fine after a restart of the workbench. java.lang.NullPointerException at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5709) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4506) at org.eclipse.swt.internal.win32.OS.$$YJP$$SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:3037) at org.eclipse.swt.dnd.TreeDragSourceEffect.getDragSourceImage(TreeDragSourceEffect.java:82) at org.eclipse.swt.dnd.TreeDragSourceEffect.dragStart(TreeDragSourceEffect.java:73) at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:769) at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:291) at org.eclipse.swt.dnd.DragSource.access$0(DragSource.java:284) at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:167) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3801) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3400) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2387) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2203) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) | resolved fixed | 1abe344 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-26T18:59:04Z" | "2008-05-26T16:40:00Z" |
233,595 | Bug 233595 DragImage looks bad on vista (table+tree) | null | resolved fixed | d1cccb0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-26T18:26:46Z" | "2008-05-22T23:46:40Z" |
233,485 | Bug 233485 Compiler warnings in I20080522-0800 | 1. WARNING in /builds/I/src/plugins/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java (at line 15) import org.eclipse.swt.internal.carbon.DataBrowserAccessibilityItemInfo; The import org.eclipse.swt.internal.carbon.DataBrowserAccessibilityItemInfo is never used | resolved fixed | 594f4b1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-22T16:57:49Z" | "2008-05-22T15:26:40Z" |
232,617 | Bug 232617 TVT34:TCT301: The Update Preferences link is not active in Linux | <response_by> Mostafa Ali at 2008.05.15.10.30.05 </response_by> OS: Linux Build date: 0514 Component/Function name: BASE MANAGE CONFIGURATION Blocking: Yes Language: Arabic Tester Name: Mostafa Ali Steps to recreate the problem: Start Eclipse. Click on Help Click on Software Updates Click on the Chck for updates.. button Click on the Revert Configuration button Clck on the Available Software tab Click on the Add Site buton Click on the Update Preferences link Verify the panel below is correctly displayed Problem description: The "Update Preferences" link is inactive in Linux OS, but it is active in Windows OS. <response_by> Matthew Mazaika at 2008.05.16.16.18.02 </response_by> This is a problem with "right to left" running on linux. running "eclipse -dir rtl" in english on windows works properly running "eclipse -dir rtl" in english on linux does not create clickable links on linux, when clicking the ANY links, they are brought into focus, but they do not go to the destination page. but, if you press the space bar the proper page will be opened. to easily see this problem go to: window -> preferences -> general -> editors <response_by> Matthew Mazaika at 2008.05.16.16.18.21 </response_by> This article was reassigned from Category:''TVT/Testing,Inbox''. | closed fixed | 818a149 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-22T16:20:27Z" | "2008-05-16T20:33:20Z" |
231,877 | Bug 231877 WM_PRINT for ToolBar with SHADOW_OUT | null | resolved fixed | aac5cc3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Group.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T23:35:38Z" | "2008-05-13T17:33:20Z" |
233,351 | Bug 233351 fix leak in drag image | build rc1 3.4 TableDragSourceEffect and TreeDragSourceEffect are leaking himage returned from DI_GETDRAGIMAGE. | resolved fixed | fb462ee | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T21:42:36Z" | "2008-05-21T22:46:40Z" |
233,099 | Bug 233099 [Accessibility] Characters typed into Text are not accessible on Tiger | Run ControlExample, go to Text tab. Turn on VoiceOver (Command+F5). Type Tab key to give focus to Text. Type characters. VoiceOver should speak the characters, but it isn't. The problem appears to be fixed for Leopard but not for Tiger. | resolved fixed | 531e822 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T21:38:47Z" | "2008-05-20T21:46:40Z" |
232,163 | Bug 232163 [Accessibility] StyledText speaks entire value when asked for "line" | 20080514 Mac OS X Carbon Run Eclipse (at least I20080513-2000) and open an editor on any java file. Turn on VoiceOver (command+F5). Use the down arrow key to move the cursor down to the next line. VoiceOver reads the whole file again, every time up or down arrow is typed. Also: the ctrl+alt+L VoiceOver command should just read the current line, but it reads the whole file. I am not sure which attribute VoiceOver wants in order to determine what the current line is, but it is likely one of the following: - kAXInsertionPointLineNumberAttribute (not a required attribute) - kAXLineForIndexParameterizedAttribute (given a character index, return line#) - kAXRangeForLineParameterizedAttribute (given a line#, return range of character indices) | resolved fixed | eaeeb6c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T20:04:28Z" | "2008-05-14T18:33:20Z" |
232,965 | Bug 232965 [breadcrumb] set top item in drop down is too aggressive on OSX | null | verified fixed | 02662f5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T18:48:42Z" | "2008-05-20T13:26:40Z" |
232,499 | Bug 232499 [JFace] Slower image painting due to fix for bug 224422 and bug 219432 | null | resolved fixed | 61f597f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T16:31:22Z" | "2008-05-16T15:00:00Z" |
225,404 | Bug 225404 Clicking on areas to left or right of cell editors in tree does not raise a FocusIn event for tree on vista | Build ID: M20071023-1652 Steps To Reproduce: This happens only on Windows Vista 1. Have a tree with multiple columns and cell editors (use CCombo based combo box cell editors). 2. Click on the area to the left (i.e. where twisties would appear) or right (in blank columns area) of the place where cell editors would appear. 3. Unlike in XP and other OSes, the tree does not raise a FocusIn event and become the focused widget--this causes the filter in CCombo to not pick up the event and thus not raise a FocusOut event, and thus the cell editor will not deactivate. More information: We are using the 3.4M5 version of the SWT plugin though. | resolved fixed | 4f4c47a | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-21T16:05:34Z" | "2008-04-02T18:13:20Z" |
229,570 | Bug 229570 Screen cheese in breadcrumb when using Windows classic style | I20080430-0100. This is more a "seeking for advice" than official bug: when switching between Java editors I see screen cheese in the breadcrumb when using Windows classic style. XP style and also Vista are fine. Also, this only happens when there are several other views in the window, e.g. when working in the Browsing perspective. It looks like XP style it is drawing the breadcrumb in one go but with Classic style it first clears, then does something else and then draws the new content. Is therAnything we can do to debug/fix this? Steps: 1. switch to Windows Classic style 2. start Eclipse 3. open 'Java Browsing' perspective 4. open java.util.regex.Pattern 5. enable breadcrumb (Alt+Shift+B) 6. open java.util.HashMap 7. switch between the two and observe the cheese | verified fixed | ae21c0f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-20T19:31:21Z" | "2008-04-30T07:20:00Z" |
228,282 | Bug 228282 [Accessibility] Table & Tree with no column headers say "sort button" on Leopard | Run ControlExample and go to Table tab. Start VoiceOver (command+F5). Tab into the Table, and type down arrow to select the first row. VoiceOver says "sort button" before saying the contents of every cell. This would be pretty annoying and confusing to a VoiceOver user. To see what is happening, select "Column Headers". Now, the column headers each have a name. Type down arrow to select the next row. Now, VoiceOver says each table header before it says the cell contents, and it sounds correct. So the problem must be that the column headers exist - with no text - even when the columns are not visible, and VoiceOver says their description (sort button) because they have no name. Hide the column headers by deselecting "Column Headers" and type down arrow one more time. Now, the column header names that were visible are being spoken, instead of "sort button". Verified that this is a problem even in a minimal snippet. import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; public class TableTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); shell.setText("Table"); Table table = new Table(shell, SWT.MULTI | SWT.FULL_SELECTION); table.setLayoutData(new GridData(GridData.FILL_BOTH)); // table.setHeaderVisible(true); for (int col = 0; col < 3; col++) { TableColumn column = new TableColumn(table, SWT.NONE); // column.setText("Column " + col); column.setWidth(100); } for (int row = 0; row < 5; row++) { TableItem item = new TableItem(table, SWT.NONE); for (int col = 0; col < 3; col++) { item.setText(col, "item" + col + row); } } shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } } | resolved fixed | 650c120 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-20T19:10:54Z" | "2008-04-22T21:33:20Z" |
231,882 | Bug 231882 [Accessibility] Characters typed into Text are not accessible on Leopard | 20080513 Run ControlExample, go to Text tab. Turn on VoiceOver (Command+F5). Type Tab key to give focus to Text. Type characters. VoiceOver should speak the characters, but it isn't. Same problem for both SINGLE and MULTI. | resolved fixed | b334d44 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-20T18:55:20Z" | "2008-05-13T17:33:20Z" |
232,475 | Bug 232475 Compiler warning | 1. WARNING in /builds/I200805152000/src/plugins/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java (at line 183) Class clazz = Class.forName ("org.eclipse.swt.browser.XULRunnerInitializer"); //$NON-NLS-1$ The local variable clazz is never read | resolved fixed | 234c8e4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-16T13:56:42Z" | "2008-05-16T12:13:20Z" |
232,017 | Bug 232017 [breadcrumb] Open type dialog pops up behind breadcrumb drop down on OSX | I20080513-2000 In breadcrumb 1. Click on a item to open its drop down 2. Open Type Is: Drop down is not closed, open type dialog pops up behind drop down. Same for open resource, sort members and probably others. This dialogs do not take focus?! Should: Close drop down. | resolved fixed | 15abd1c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-15T19:37:35Z" | "2008-05-14T07:26:40Z" |
201,774 | Bug 201774 Mozilla Browser doesn't open at the first execution in a Linux RHEL 4. | Build ID: 120070625-1500 Steps To Reproduce: I'm developing a Plug-in over ATF Plugins. So this error ocurrs when I'm running the my plug-in. 1. Runs a Plug-in Project with the "Clear" button checked in the Workspace Data Goup on the Plug-in Launcher. 2. Create a HTML Page 3. Open With -> Mozilla Browser More information: We are working on Linux RedHat Enterprise 4. We install the ATF Plug-in like as said in the ATF's page. But in first time we try to run the Mozilla Browser in a new workspace we found a NullPointerException. The bug occurs when the ATF Plug-ins requires the SWT Mozilla Broswer, in the org.eclipse.swt.browser.Mozilla.getWebBrowser(Mozilla.java:1258), in the first time that I tried to open a mozilla for a workspace, this method throw the InvocationTargetException. When I restart the Eclipse and try to open a Mozilla browser again everything works fine. java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.swt.browser.Mozilla.getWebBrowser(Mozilla.java:1258) at org.eclipse.swt.browser.Browser.getWebBrowser(Browser.java:446) at org.eclipse.atf.mozilla.ide.ui.browser.MozBrowserEditor.getAdapter(Unknown Source) at org.eclipse.atf.mozilla.ide.ui.netmon.MozNetworkMonitorAdapter.connect(Unknown Source) at org.eclipse.atf.mozilla.ide.ui.browser.MozBrowserEditor.createPartControl(Unknown Source) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:426) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:592) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:263) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2721) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2633) at org.eclipse.ui.internal.WorkbenchPage.access$12(WorkbenchPage.java:2625) at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2577) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2572) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2556) at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:340) at org.eclipse.ui.actions.OpenWithMenu.access$0(OpenWithMenu.java:328) at org.eclipse.ui.actions.OpenWith Menu$2.handleEvent(OpenWithMenu.java:190) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3319) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) Caused by: org.mozilla.xpcom.XPCOMInitializationException: Must call Mozilla.getInstance().initialize() before using this method at org.mozilla.xpcom.Mozilla.wrapXPCOMObject(Mozilla.java:1062) ... 48 more Caused by: java.lang.NullPointerException at org.mozilla.xpcom.Mozilla.wrapXPCOMObject(Mozilla.java:1060) ... 48 more | resolved fixed | a1cedd5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-15T16:49:23Z" | "2007-08-30T18:53:20Z" |
229,181 | Bug 229181 [DateTime] DateTime widget does not report mouseDoubleClick | Build ID: M20080221-1800 Steps To Reproduce: 1. Create a DateTime widget. 2. Add a mouse listener. 3. Double-click on an instance of the DateTime widget. 4. note that mouseDoubleClick is never called. More information: May be related to 219698 | resolved fixed | cb49a6d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DateTime.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-15T16:41:47Z" | "2008-04-28T22:00:00Z" |
232,093 | Bug 232093 crash in Safari browser while handling key events | In eclipse: 1 - open content assist 2 - select a content assist item that open the second content assist window 3 - click in the second content assist window 4 - press escape to dismiss second content assist window 5 - type the word "crash" Process: eclipse [6615] Path: /Users/kevinbarnes/Eclipse/eclipse/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.4 (3.4) Code Type: PPC (Native) Parent Process: launchd [76] Date/Time: 2008-05-14 11:06:59.241 -0400 OS Version: Mac OS X 10.5.2 (9C7010) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) Client VM (1.5.0_13-119 mixed mode, sharing) Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_13-119) for macosx-ppc, built on Sep 28 2007 23:55:48 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x912c41b0 Current thread (0x01001670): JavaThread "main" [_thread_in_native, id=-1600085900] Stack: [0xbf800000,0xc0000000) Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(II)I+0 j org.eclipse.swt.browser.Safari.handleCallback(II)I+860 j org.eclipse.swt.browser.Safari.eventProc3(III)I+27 v ~StubRoutines::call_stub j org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(II)I+0 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+52 j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+393 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$5.run()V+23 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+80 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub Java Threads: ( => current thread ) 0x010a5cf0 JavaThread "Additional info timer" [_thread_blocked, id=13199872] 0x01061e50 JavaThread "Worker-2" [_thread_blocked, id=8867840] 0x01054f30 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=13275648] 0x0104c380 JavaThread "Java indexing" daemon [_thread_blocked, id=9003520] 0x0103e810 JavaThread "Worker-0" [_thread_blocked, id=13196288] 0x0102fc40 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=10134528] 0x01015d80 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=9017856] 0x01014e80 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=8871424] 0x0100a940 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8504320] 0x01009f30 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8500736] 0x01009ab0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8497152] 0x01009280 JavaThread "Finalizer" daemon [_thread_blocked, id=8491008] 0x01008eb0 JavaThread "Reference Handler" daemon [_thread_blocked, id=8484864] =>0x01001670 JavaThread "main" [_thread_in_native, id=-1600085900] Other Threads: 0x01008630 VMThread [id=8481280] 0x0100c090 WatcherThread [id=8507904] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 7488K, used 1583K [0x0d580000, 0x0dda0000, 0x0f1e0000) eden space 6656K, 11% used [0x0d580000, 0x0d63bc08, 0x0dc00000) from space 832K, 100% used [0x0dc00000, 0x0dcd0000, 0x0dcd0000) to space 832K, 0% used [0x0dcd0000, 0x0dcd0000, 0x0dda0000) tenured generation total 65552K, used 34100K [0x0f1e0000, 0x131e4000, 0x1d580000) the space 65552K, 52% used [0x0f1e0000, 0x1132d160, 0x1132d200, 0x131e4000) compacting perm gen total 38400K, used 38300K [0x1d580000, 0x1fb00000, 0x2d580000) the space 38400K, 99% used [0x1d580000, 0x1fae7098, 0x1fae7200, 0x1fb00000) ro space 8192K, 63% used [0x2d580000, 0x2da96c48, 0x2da96e00, 0x2dd80000) rw space 12288K, 43% used [0x2dd80000, 0x2e2af088, 0x2e2af200, 0x2e980000) Virtual Machine arguments: JVM args: -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Xms40m -Xmx256m -XX:MaxPermSize=256m -Dorg.eclipse.swt.internal.carbon.smallFonts Java command: <unknown> launcher type: generic Thread 0 Crashed: 0 com.apple.WebCore 0x912c41b0 WebCore::Frame::page() const + 0 1 com.apple.WebKit 0x95eeb2c4 -[WebFrameView keyDown:] + 52 2 com.apple.AppKit 0x944e4218 forwardMethod + 104 3 com.apple.AppKit 0x944e4218 forwardMethod + 104 4 com.apple.AppKit 0x944e4218 forwardMethod + 104 5 com.apple.AppKit 0x945d57d4 -[NSControl keyDown:] + 116 6 com.apple.WebKit 0x95ed07fc -[WebHTMLView keyDown:] + 412 7 com.apple.AppKit 0x94466ea0 -[NSWindow sendEvent:] + 7428 8 com.apple.AppKit 0x949d4ad8 -[HICocoaWindowAdapter sendSuperEvent:] + 112 9 com.apple.AppKit 0x949d3df0 ForwardEventToNSWindow + 244 10 com.apple.AppKit 0x9461d104 HICocoaViewEventHandler + 764 11 com.apple.HIToolbox 0x93aa8f68 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484 12 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 13 com.apple.HIToolbox 0x93b1c030 CallNextEventHandler + 116 14 libswt-pi-carbon-3445.jnilib 0x08c54c7c Java_org_eclipse_swt_internal_carbon_OS_CallNextEventHandler + 60 15 ??? 0x03586260 0 + 56124000 16 ??? 0x0357f9ec 0 + 56097260 17 ??? 0x0357f9ec 0 + 56097260 18 ??? 0x0357d160 0 + 56086880 19 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 20 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 21 libjvm.dylib 0x0046a658 0x3c9000 + 661080 22 libjvm.dylib 0x005d6964 JNI_CreateJavaVM_Impl + 133876 23 libswt-carbon-3445.jnilib 0x08c0fe08 callback + 1048 24 libswt-carbon-3445.jnilib 0x08beb0a4 fn38_3 + 48 25 com.apple.HIToolbox 0x93aa8f68 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484 26 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 27 com.apple.HIToolbox 0x93aa7f1c SendEventToEventTargetWithOptions + 52 28 com.apple.HIToolbox 0x93ad8d70 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1664 29 com.apple.HIToolbox 0x93aa93bc DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2592 30 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 31 com.apple.HIToolbox 0x93ac50e0 SendEventToEventTarget + 52 32 libswt-pi-carbon-3445.jnilib 0x08c711f4 Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget + 60 33 ??? 0x03586260 0 + 56124000 34 ??? 0x0357f9ec 0 + 56097260 35 ??? 0x0357f92c 0 + 56097068 36 ??? 0x0357faac 0 + 56097452 37 ??? 0x0357f9ec 0 + 56097260 38 ??? 0x0357f9ec 0 + 56097260 39 ??? 0x0357fe0c 0 + 56098316 40 ??? 0x0357faac 0 + 56097452 41 ??? 0x0357f9ec 0 + 56097260 42 ??? 0x0357f9ec 0 + 56097260 43 ??? 0x0357fd1c 0 + 56098076 44 ??? 0x0357fd1c 0 + 56098076 45 ??? 0x0357f9bc 0 + 56097212 46 ??? 0x0357f9bc 0 + 56097212 47 ??? 0x0357f9bc 0 + 56097212 48 ??? 0x0357d160 0 + 56086880 49 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 50 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 51 libjvm.dylib 0x0046f8a0 0x3c9000 + 682144 52 libjvm.dylib 0x0048ccd0 0x3c9000 + 802000 53 libjvm.dylib 0x0061f7f0 JVM_InvokeMethod + 592 54 ??? 0x03586260 0 + 56124000 55 ??? 0x0357f9bc 0 + 56097212 56 ??? 0x0357f9bc 0 + 56097212 57 ??? 0x0357fd1c 0 + 56098076 58 ??? 0x0357f9bc 0 + 56097212 59 ??? 0x0357faac 0 + 56097452 60 ??? 0x0357faac 0 + 56097452 61 ??? 0x0357d160 0 + 56086880 62 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 63 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 64 libjvm.dylib 0x00454768 0x3c9000 + 571240 65 libjvm.dylib 0x005cfdd8 JNI_CreateJavaVM_Impl + 106344 66 eclipse_1114.so 0x0001a0bc startJavaJNI + 600 67 eclipse_1114.so 0x00018dfc startJavaVM + 124 68 eclipse_1114.so 0x00016598 run + 1228 69 org.eclipse.eclipse 0x000021e4 original_main + 792 70 org.eclipse.eclipse 0x00002a90 main + 636 71 org.eclipse.eclipse 0x00001ae8 _start + 756 72 org.eclipse.eclipse 0x000017ec start + 44 Thread 1: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libSystem.B.dylib 0x94d1f134 mach_msg_server + 500 3 libjvm.dylib 0x003d67e0 0x3c9000 + 55264 4 libjvm.dylib 0x003d6500 0x3c9000 + 54528 5 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 6 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 2: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040cb94 0x3c9000 + 277396 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 3: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357faac 0 + 56097452 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 4: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 5: 0 libSystem.B.dylib 0x94c959c8 semaphore_wait_trap + 8 1 libjvm.dylib 0x0040e820 0x3c9000 + 284704 2 libjvm.dylib 0x0040d408 0x3c9000 + 279560 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 6: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libjvm.dylib 0x00564de4 0x3c9000 + 1687012 2 libjvm.dylib 0x0040ee34 0x3c9000 + 286260 3 libjvm.dylib 0x0040d408 0x3c9000 + 279560 4 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 5 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 7: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040f2c0 0x3c9000 + 287424 3 libjvm.dylib 0x0040d408 0x3c9000 + 279560 4 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 5 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 8: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040f65c 0x3c9000 + 288348 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 9: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 10: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 ??? 0x0358ee30 0 + 56159792 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 11: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 12: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CoreFoundation 0x96ca1ea8 CFRunLoopRun + 60 4 com.apple.DesktopServices 0x9295ecf0 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 104 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 13: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CoreFoundation 0x96ca1ea8 CFRunLoopRun + 60 4 com.apple.DesktopServices 0x9295ee6c TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 176 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 14: 0 libSystem.B.dylib 0x94c9c38c __semwait_signal + 12 1 libSystem.B.dylib 0x94cd8f40 _pthread_cond_wait + 1580 2 ...ple.CoreServices.CarbonCore 0x91ce91d4 TSWaitOnCondition + 132 3 ...ple.CoreServices.CarbonCore 0x91cc75c0 TSWaitOnConditionTimedRelative + 204 4 ...ple.CoreServices.CarbonCore 0x91ce8d90 MPWaitOnQueue + 272 5 com.apple.DesktopServices 0x9296a8e8 TNodeSyncTask::SyncTaskProc(void*) + 88 6 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 7 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 15: 0 libSystem.B.dylib 0x94cd73d8 kevent + 12 1 com.apple.CoreFoundation 0x96c78ed4 __monitor_file_descriptor__ + 88 Thread 16: 0 libSystem.B.dylib 0x94cfa004 select$DARWIN_EXTSN + 12 1 com.apple.CoreFoundation 0x96caca68 __CFSocketManager + 764 Thread 17: 0 libSystem.B.dylib 0x94c959f8 semaphore_timedwait_signal_trap + 8 1 libSystem.B.dylib 0x94cd8e3c _pthread_cond_wait + 1320 2 com.apple.Foundation 0x95a55898 -[NSCondition waitUntilDate:] + 384 3 com.apple.Foundation 0x95a556c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268 4 com.apple.AppKit 0x94408b80 -[NSUIHeartBeat _heartBeatThread:] + 664 5 com.apple.Foundation 0x95a184f4 __NSThread__main__ + 1004 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 18: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 19: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357fe0c 0 + 56098316 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 20: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357faac 0 + 56097452 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 21: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 22: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CFNetwork 0x90bd5b5c CFURLCacheWorkerThread(void*) + 292 4 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 23: 0 libSystem.B.dylib 0x94c959f8 semaphore_timedwait_signal_trap + 8 1 libSystem.B.dylib 0x94cd8e3c _pthread_cond_wait + 1320 2 ...ple.CoreServices.CarbonCore 0x91cc75e4 TSWaitOnConditionTimedRelative + 240 3 ...ple.CoreServices.CarbonCore 0x91ce8d90 MPWaitOnQueue + 272 4 com.apple.DesktopServices 0x9296c5a8 TFolderSizeTask::FolderSizeTaskProc(void*) + 88 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 24: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357fe0c 0 + 56098316 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 0 crashed with PPC Thread State 32: srr0: 0x912c41b0 srr1: 0x0000f030 dar: 0x00000008 dsisr: 0x40000000 r0: 0x95eeb2e4 r1: 0xbfffc070 r2: 0x35b20a10 r3: 0x00000000 r4: 0x962cf6e8 r5: 0x35b3cbe0 r6: 0x35b3cbe0 r7: 0x00000028 r8: 0xa1b1c1d3 r9: 0x00000002 r10: 0x00000008 r11: 0xa0b68894 r12: 0x912c41b0 r13: 0x01001670 r14: 0x036021fc r15: 0x08c54c40 r16: 0xbfffcd80 r17: 0x1dc519e0 r18: 0xbfffcde4 r19: 0xbfffcd68 r20: 0x1dc6b498 r21: 0x1dc519e0 r22: 0x00000100 r23: 0x35b33f50 r24: 0x00000000 r25: 0xa0cea70c r26: 0x35b3cbe0 r27: 0x35b32e10 r28: 0x35b3cbe0 r29: 0x962c136c r30: 0x35b32f50 r31: 0x95eeb2a4 cr: 0x24044228 xer: 0x00000004 lr: 0x95eeb2e4 ctr: 0x912c41b0 vrsave: 0x00000000 Binary Images: 0x1000 - 0x4fff +org.eclipse.eclipse 3.4 (3.4) /Users/kevinbarnes/Eclipse/eclipse/Eclipse.app/Contents/MacOS/eclipse 0x15000 - 0x1efc7 +eclipse_1114.so ??? (???) /Users/kevinbarnes/Eclipse/eclipse/plugins/org.eclipse.equinox.launcher.carbon.macosx_1.0.100.v20080509-1800/eclipse_1114.so 0x26000 - 0x2dfff com.apple.JavaVM 12.0.2 (12.0.2) <7a7d795d9c93b302a8a2b838bcb6a914> /System/Library/Frameworks/JavaVM.framework/JavaVM 0x45000 - 0x4cff0 libverify.dylib ??? (???) <a6b0e78edb9f54007c092f3063f51811> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x51000 - 0x6efff libjava.jnilib ??? (???) <752d32182502fb192cee65d77131d2ab> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jnilib 0x7d000 - 0x89fff libzip.jnilib ??? (???) <440002c90c10019da69d134857522d1f> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jnilib 0x3c9000 - 0x72bfff libjvm.dylib ??? (???) <fa3f5f95dcfb4128b0a168dfda315b9a> /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Libraries/libjvm.dylib 0x17bb000 - 0x17bcfff libframeembedding.jnilib ??? (???) <177ad5648f7401b90869a78377b69a39> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libframeembedding.jnilib 0x6033000 - 0x6034ffc com.apple.JavaFrameEmbedding 12.0.0 (12.0.0) <7a4b767a12923ff997c37f1174e2c901> /System/Library/Frameworks/JavaFrameEmbedding.framework/Versions/A/JavaFrameEmbedding 0x6184000 - 0x626dffb com.apple.RawCamera.bundle 2.0.4 (2.0.4) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x8be2000 - 0x8c0fffc +libswt-carbon-3445.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-carbon-3445.jnilib 0x8c20000 - 0x8c41ff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib 0x8c49000 - 0x8c9fff7 +libswt-pi-carbon-3445.jnilib ??? (???) <cf6c22d6751c8d3e1f8bcd8071e94076> /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-pi-carbon-3445.jnilib 0x8e12000 - 0x8e1efff libnet.jnilib ??? (???) <edef147cc9842a75520df4faae4f4350> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnet.jnilib 0x8e24000 - 0x8e28fff libnio.jnilib ??? (???) <34a01a51acbba860bc469073ec64287a> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnio.jnilib 0x3327e000 - 0x3328affe com.apple.URLMount 3.1 (3.1) <c901b91776a9a87ebaf253acb8799a03> /System/Library/PrivateFrameworks/URLMount.framework/URLMount 0x3337f000 - 0x33385fff libCGXCoreImage.A.dylib ??? (???) <4e1cd099b993b5ad9637cd0435a3a182> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib 0x333d0000 - 0x333d1ffb ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x33402000 - 0x33403feb +liblocalfile_1_0_0.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/23/1/.cp/os/macosx/liblocalfile_1_0_0.jnilib 0x34044000 - 0x34048ffe +libswt-cocoa-carbon-3445.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-cocoa-carbon-3445.jnilib 0x346c6000 - 0x3472efff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) <4b60ff8df520b0d8ca383547d07cd2bb> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser 0x357f2000 - 0x3595dffb libawt.jnilib ??? (???) <07c1ab45c1709a0e2b64bf6534ae2728> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib 0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld 0x90039000 - 0x90060fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib 0x90061000 - 0x90070fff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers 0x90071000 - 0x90074ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x90075000 - 0x90079ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x900df000 - 0x9018ffff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x901a1000 - 0x901a3ffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x901a4000 - 0x9025efff libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib 0x9025f000 - 0x902f9ff7 com.apple.ApplicationServices.ATS 3.2 (???) <4258842969dc8d4fa37e01a80aa3d409> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x9036c000 - 0x908e0ff7 com.apple.CoreGraphics 1.351.21 (???) <44bbf8c3a4e8bc97e8b3e35737001742> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x908e7000 - 0x9097dff3 com.apple.LaunchServices 286.5 (286.5) <1a1a73b91deacb172d15745ec73e5959> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x90a4d000 - 0x90a8efff com.apple.CoreMediaIOServicesPrivate 8.0 (8.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/CoreMediaIOServicesPrivate 0x90a8f000 - 0x90a8fffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer 0x90a90000 - 0x90abbff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib 0x90abc000 - 0x90b06fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x90b07000 - 0x90b8cfff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib 0x90b8d000 - 0x90b8dffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x90b8e000 - 0x90bcafff libRIP.A.dylib ??? (???) <7bc908a7317a00fe3c659571c50cdd46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x90bcb000 - 0x90c45ffd com.apple.CFNetwork 221.5 (221.5) <ef2672379d6fcb1470dc9361ce68e7f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x90c56000 - 0x90c69fff com.apple.LangAnalysis 1.6.4 (1.6.4) <c184bb5b2859e82c5740a6fdb1e3d0bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x90c6a000 - 0x90c89fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x90c95000 - 0x90d1ffff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x90d2c000 - 0x90d2cff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x90d2d000 - 0x90d2dfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x90d2e000 - 0x90d57ffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x90d58000 - 0x90d90fff com.apple.SystemConfiguration 1.9.1 (1.9.1) <50bc5b4d50a2e1f7743e729381467537> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x90d91000 - 0x90d98ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x90d9f000 - 0x90df5fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x90e25000 - 0x90e26ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x90e2a000 - 0x90eb1ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x90eb2000 - 0x90f3dffb com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x90f3e000 - 0x90f9efff com.apple.CoreText 2.0.1 (???) <2ecbcac842c4864bdd3de0a68e4d2f2c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x90f9f000 - 0x91182ffb com.apple.security 5.0.2 (33001) <5e841904ba22d381672679180d4b0f4a> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x9121a000 - 0x91265ffb com.apple.Metadata 10.5.2 (398.7) <f0c3c28205af67a29a2ed728ee297648> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x91266000 - 0x91947ff3 com.apple.WebCore 5525.18.1 (5525.18.1) <92c7f43022f33c6d71cd174b2784070d> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x91a8c000 - 0x91b73ff7 com.apple.JavaScriptCore 5525.17 (5525.17) <9566ab27b76c1bfb748a982bea07d4af> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x91b74000 - 0x91beffff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x91bf0000 - 0x91c52ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x91c53000 - 0x91c79fff libcups.2.dylib ??? (???) <d60807e6cfdc208c2e5520f7acb473f6> /usr/lib/libcups.2.dylib 0x91c7a000 - 0x91c99fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x91c9a000 - 0x91c9dfff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x91c9e000 - 0x91f9fff7 com.apple.CoreServices.CarbonCore 785.8 (785.8) <d56076bc0fe62dd58002bdd581a3f3c0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x91fa0000 - 0x91fc4ffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x91fc5000 - 0x91fc5ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel 0x91fc6000 - 0x91fd2ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x91fd3000 - 0x92408ffa libGLProgrammability.dylib ??? (???) <6d71574167a838789ab0ee27f92af626> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x92457000 - 0x9251cffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x9251d000 - 0x92549fff com.apple.CoreMediaPrivate 8.0 (8.0) <66b09473b80b671769201a045f14d614> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate 0x9254a000 - 0x928a7ff2 com.apple.QuartzCore 1.5.1 (1.5.1) <f364682e96d58c5849cad532f6bf2f91> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x928ec000 - 0x92907ffb libPng.dylib ??? (???) <c51ec88c87a3f0a646471165e16acd43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A | resolved fixed | 650ccec | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-14T18:57:34Z" | "2008-05-14T15:46:40Z" |
231,787 | Bug 231787 When computing bounds,TextLayout does not take trailing line break into account | (1) Have a TextLayout and set its text to "abc<enter>" > call getBounds() (2) set the text to "abc" > call getBounds() > the result for (1) and (2) are the same. The trailing line break is not taken into account | resolved fixed | 05d141b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-14T18:36:48Z" | "2008-05-13T12:00:00Z" |
226,007 | Bug 226007 BIDI3.4: search results appear shaped improperly | null | closed fixed | 238f507 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-14T17:11:13Z" | "2008-04-07T17:40:00Z" |
231,925 | Bug 231925 Arrow button is drawn backwards | The left arrow button is drawn pointing right and the right button is drawn pointing left. | resolved fixed | 67772f2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-13T21:24:32Z" | "2008-05-13T20:20:00Z" |
227,076 | Bug 227076 [DND]Combo:Multiple problems during drag text in combo on Mac OS X | Build ID: I20080207-1530 Steps To Reproduce: My Env: Mac OS Version 10.5 Eclipse build I20080207-1530 SWT 3.4.0 v3428a [Step to reproduce] 1.Run snipplet on Mac OS X 2.Use mouse to select some text in the combo. 3.Drag the text to the Text area on the right. [Results]: 1.Mouse cursor does not change its shape to indicate dragging as on Windows. 2.A "DragStart" was not triggered until user release the mouse(mouse up). 3.A "DragEnter" was also not triggered until mouse up. [Expected:] 1.Mouse cursor will change its shape during dragging. 2.A "DragStart" should be triggered when the dragging actually happens. 3.A "DragEnter" should be triggered when the the mouse cursor enter the text area during dragging. More information: | resolved fixed | f336407 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/DateTime.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-13T21:20:59Z" | "2008-04-15T06:13:20Z" |
231,884 | Bug 231884 [Accessibility] Controls that implement kEventAccessibleGetNamedAttribute need to call swt accessible API | 20080513 Many of the Carbon controls had to override kEventAccessibleGetNamedAttribute in order to provide basic accessibility for the control. If an application hooked an AccessibleListener to any of these controls, then the application's AccessibleListener code was not being called. The fix involved coming up with a mechanism to let the Accessible class know that theEvent may already contain valid data. Also, care needed to be taken to make sure that CallNextEventHandler was not called twice for the same event. | resolved fixed | 95bcccf | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-13T20:22:28Z" | "2008-05-13T17:33:20Z" |
231,606 | Bug 231606 [Browser] disposing Browser in KeyDown causes crash | - happens on OSX with the Safari and Mozilla browsers - it seems that HICocoaView is not doing a disposed check after sending key notifications | resolved fixed | 56fb1e5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T21:29:33Z" | "2008-05-12T16:33:20Z" |
206,870 | Bug 206870 [Mac] New Project wizard Finish button isn't enabled for Japanese project name | null | closed fixed | 8aef787 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T20:35:03Z" | "2007-10-19T10:33:20Z" |
225,373 | Bug 225373 Bidi3.4: Unicode Markers don't have any effect in Console View | null | closed fixed | 5403e07 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T20:23:17Z" | "2008-04-02T15:26:40Z" |
227,974 | Bug 227974 DBCS3.4: Dragged texts from Safari gets garbled when dropped on a StyledText widget | null | closed fixed | 1a3287a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/TextTransfer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T20:01:46Z" | "2008-04-21T09:26:40Z" |
228,167 | Bug 228167 DBCS3.4: URLTransfer for DBCS URL failed | null | closed fixed | f60812a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/URLTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T20:00:13Z" | "2008-04-22T07:40:00Z" |
231,449 | Bug 231449 First Table Row Justification Wrong | null | resolved fixed | 71b2aa6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T18:00:44Z" | "2008-05-10T20:06:40Z" |
227,965 | Bug 227965 Tooltip for table column not appearing | OS: Mac OS X 10.5.2 (intel) Build: 3.4M6a (SWT v3436) Steps: 1. Create a Java project and import a snippet code org.eclipse.swt.snippets.Snippet2.java from CVS 2. Insert the following lines below "column2.setWidth(100);" (around line 46) column1.setToolTipText("Column 1"); column2.setToolTipText("Column 2"); 3. Run a SWT application (platform specific swt JAR file may be needed in the build path) 4. Move a mouse cursor over the table columns and stay there for a couple of seconds None of given tooltips "Column 1" and "Column 2" appeared for each table column | resolved fixed | 25a38b5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-12T14:58:25Z" | "2008-04-21T06:40:00Z" |
231,303 | Bug 231303 Browser widget: Tab key traps focus when key listener is added | I20080508-2000 Focus handling in the Browser widget is screwed as soon as I add a key listener (KeyUp or KeyDown) to the Browser. Steps in ControlExample: - add key listener - click into browser, just before the first link - press Tab to focus first link - press Shift+Tab => should: put focus to the "Browser" TabItem => does: first puts you into a state where nothing really has focus (Up/DownArrow keys don't scroll the browser any more). On second press of Shift+Tab, puts focus the last link in the browser. - click into the "Browser" TabItem - press Tab => should: put focus to the browser => does: puts focus into a black hole. There's no way to get the focus back from this state using the Tab key. I think the problem is that Browser is a subclass of Composite, and adding a key listener to the composite makes it take focus. Even with a key listener, the Browser widget should behave like e.g. a Tree and still correctly implement focus traversal (e.g. by passing focus to the contained WebSite control). | resolved fixed | 239af00 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-09T21:26:14Z" | "2008-05-09T13:33:20Z" |
214,503 | Bug 214503 Incorrect KeyEvents returned using SWT_AWT. | null | resolved fixed | fb9d25e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-09T19:17:31Z" | "2008-01-07T15:33:20Z" |
229,520 | Bug 229520 FileDialog does not provide enough information to open multiple files from different directories | On Mac OSX, opening a FileDialog with SWT.MULTI allows the selection of multiple files from multiple different directories. However, after running FileDialog.open(), calling FileDialog.getFileNames() returns only the base names of each of the selected files, and does not provide any means of discovering the directories for the files. The return value of FileDialog.open() does indeed return the full path, but only to the first file that is selected. This effectively makes it impossible to robustly support opening multiple from different directories on OSX. For example, if I run: public static void main(String[] args) throws Exception { FileDialog fd = new FileDialog(new Shell(), SWT.OPEN | SWT.MULTI); String opened = fd.open(); System.out.println("FileDialog.show: " + opened); System.out.println("FileDialog.getFileName: " + fd.getFileName()); System.out.println("FileDialog.getFilterPath: " + fd.getFilterPath()); System.out.println("FileDialog.getFileNames(): " + Arrays.asList(fd.getFileNames())); System.out.println("FileDialog.getFilterExtensions(): " + Arrays.asList(fd.getFilterExtensions())); System.out.println("FileDialog.getFilterNames(): " + Arrays.asList(fd.getFilterNames())); } and select the two files: /tmp/files/foo/baz /tmp/files/bar/baz The program will output: FileDialog.show: /tmp/files/bar/baz FileDialog.getFileName: baz FileDialog.getFilterPath: /tmp/files/bar FileDialog.getFileNames(): [baz, baz] FileDialog.getFilterExtensions(): [] FileDialog.getFilterNames(): [] Note that the path to "/tmp/files/foo/baz" is not provided by any of the methods in FileDialog. The javadoc for FileDialog.getFileNames() says that it "Returns a (possibly empty) array with the paths of all files that were selected in the dialog relative to the filter path." I suppose one way to fix this bug while being consistent with the documented behavior would be to construct relative paths for each of the selected files, so that in the example above, FileDialog.getFileNames() would return {baz,../foo/baz}. An alternative solution could be for FileDialog.getFilterPath() to return the lowest common denominator path to the files selected (e.g., in the example above, it would return "/tmp/files"), and then have FileDialog.getFileNames() return the paths relative to that directory (e.g., {bar/baz,foo/baz}). | resolved fixed | d474035 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-09T16:22:52Z" | "2008-04-30T01:46:40Z" |
226,832 | Bug 226832 BIDI3.4:HCG "Cancel" button of Source Folder Selection dialog does not work in Hebrew version | Build ID: I20080405 Linux RedHat 5 Steps To Reproduce: 1. Install: - Eclipse SDK with NL Bidi package 2. Run mirrored Eclipse with Hebrew translation (use command line argument -nl iw) 3. Go to File->New->Package 4. Select "Browse..." 5. Source Folder Selection dialog is opened and the list does not contain a source folder. 6. Try to click on the "Cancel" button to close the dialog. Expected result: the dialog is closed Actual result: the button does not work Comments: 1. The dialog can be closed with x 2. The cancel button works in the English version More information: | closed fixed | 4d7a561 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-08T21:03:33Z" | "2008-04-13T12:33:20Z" |
223,926 | Bug 223926 Table/Tree scrollbars bad after setVisible() | Run the testcase. Grab the vertical scrollbar and note that the selection event is fired. Click on the table to hide the scrollbar. Click again to show it. Note the selection event is not fired anymore. import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.*; public class PR { public static void main(String[] args) throws Exception { final Display display = new Display(); final Shell shell = new Shell(display); final Table table = new Table(shell, SWT.BORDER); for (int i = 0; i < 300; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText("Item" + i); } table.setBounds(10, 10, 300, 300); table.getVerticalBar().addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("selection"); } }); table.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { System.out.println("here=" + table.getVerticalBar().getVisible()); table.getVerticalBar().setVisible(!table.getVerticalBar().getVisible()); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | fad730f | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-08T20:41:13Z" | "2008-03-25T18:33:20Z" |
231,192 | Bug 231192 [Accessibility] Characters typed into Editable Combo are not accessible on Leopard | null | resolved fixed | 8ec8763 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-08T20:01:57Z" | "2008-05-08T20:53:20Z" |
231,148 | Bug 231148 [Accessibility] StyledText typed characters are not accessible on Leopard | I20080502-0100 Open any editor, or run the CustomControlExample to get a StyledText. Turn on VoiceOver. Type some characters into the StyledText. The typed characters are not spoken. | resolved fixed | 077a241 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-08T16:13:26Z" | "2008-05-08T15:20:00Z" |
231,009 | Bug 231009 Compile Error on GTK 2.2.x: Fields missing from PangoLayoutLine | We can't compile the GTK libraries on 2.2.x because the PangoLayoutLine struct was changed in GTK 2.4. | resolved fixed | 327cb8a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/PangoLayoutLine.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T22:59:19Z" | "2008-05-07T22:40:00Z" |
219,558 | Bug 219558 [CellEditors] ComboBoxCellEditor doesn't work properly (CCombo) | Eclipse Version: 3.4M5 OS: Windows XP It works well in older version, but doesn't in this one. I used ComboBoxCellEditor in a table, and sometimes it doesn't work. In the table, click the cell, sometimes the triangle at right is shown, and sometimes is hidden. When the triangle is shown, I select an item in the list, it works. But if the triangle is hidden, I select one, it can't be selected. After studying the code, I find that in the condition the triangle is hidden, if I select an item, CellModifier.CanModify() won't be invoked, and none of method in CellModifier will be called. Obviously, it's a bug. To simplify the question, you can see this file org.eclipse.jface.snippets/Eclipse JFace Snippets/org/eclipse/jface/snippets/viewers/Snippet027ComboBoxCellEditors.java, and change v.setCellEditors(new CellEditor[] { new ComboBoxCellEditor( v.getTable(), new String[] { "Zero", "Ten", "Twenty", "Thirty","Fourty", "Fifty", "Sixty", "Seventy", "Eighty","Ninety" }) }); to v.setCellEditors(new CellEditor[] { new ComboBoxCellEditor( v.getTable(), new String[] { "Zero", "Ten", "Twenty", "Thirty","Fourty", "Fifty", "Sixty", "Seventy", "Eighty","Ninety" },SWT.READ_ONLY) }); After doing that, you can reproduce this bug easily. | resolved fixed | 77f6122 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T19:46:38Z" | "2008-02-20T09:33:20Z" |
230,489 | Bug 230489 use DeleteObject to dispose non-Mlang fonts | null | resolved fixed | 0100159 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T18:43:50Z" | "2008-05-06T21:40:00Z" |
212,991 | Bug 212991 Mac OS X accessibility does not have the standard relations | On Windows, there are several standard relations under MSAA, for example, a Label preceeding a Text will provide the accessible name for the Text. On GTK, these relations were implemented for SWT using ATK relations. (see Control.setRelations() and Label.addRelation() in the GTK code) Need to implement these on Mac OS X. | resolved fixed | 7c5c835 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T18:28:47Z" | "2007-12-14T11:00:00Z" |
230,912 | Bug 230912 IAE when leaving IME | null | verified fixed | 854a2a0 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T18:24:41Z" | "2008-05-07T14:20:00Z" |
230,935 | Bug 230935 [Accessibility] StyledText speaks name twice | Create a single-line StyledText preceded by a Label. Run this, and turn on VoiceOver. When the StyledText takes focus, it speaks the Label text twice. | resolved fixed | ee716e4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-07T18:22:59Z" | "2008-05-07T17:06:40Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.