id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
1,161 | 266,344 |
Bug 266344 Table/Tree check boxes show intermediate state
|
when selecting a check box in table or tree, the indeterminate state is quickly shown before the checked state. We fixed this in button already by over riding nextState.
|
2009-02-26 12:22:27
| 1,235,670,000 |
resolved fixed
|
5178249
| 1,236,030,000 |
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/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,162 | 266,407 |
Bug 266407 Foreground color in Table/Tree should not be drawn for selected active items
| null |
2009-02-26 19:13:23
| 1,235,690,000 |
resolved fixed
|
5591c13
| 1,235,940,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
1,163 | 266,499 |
Bug 266499 IME broken on cocoa
|
The current key implementation has the IME broken. Steps. 1 switch to hiragana 2 type a 3 type arrow down 4 hit enter java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3841) at org.eclipse.swt.SWT.error(SWT.java:3775) at org.eclipse.swt.SWT.error(SWT.java:3746) at org.eclipse.swt.graphics.TextLayout.getStyle(TextLayout.java:1344) at org.eclipse.swt.custom.StyledTextRenderer.getTextLayout(StyledTextRenderer.java:910) at org.eclipse.swt.custom.StyledTextRenderer.getTextLayout(StyledTextRenderer.java:702) at org.eclipse.swt.custom.StyledTextRenderer.calculate(StyledTextRenderer.java:202) at org.eclipse.swt.custom.StyledTextRenderer.calculateClientArea(StyledTextRenderer.java:220) at org.eclipse.swt.custom.StyledText.resetCache(StyledText.java:7095) at org.eclipse.swt.custom.StyledText.handleTextChanged(StyledText.java:5921) at org.eclipse.swt.custom.StyledText$6.textChanged(StyledText.java:5380) at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:67) at org.eclipse.swt.custom.DefaultContent.sendTextEvent(DefaultContent.java:795) at org.eclipse.swt.custom.DefaultContent.replaceTextRange(DefaultContent.java:788) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:6485) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:7281) at org.eclipse.swt.custom.StyledText.doContent(StyledText.java:2427) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5672) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5697) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1167) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1191) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1176) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1205) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1201) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:403) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:537) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4155) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:205) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1636) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:1679) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4213) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:3864) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3885) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:89) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2843) at styledtext.tests.STBench.main(STBench.java:48) ----------------- this happens because the enter is sent to the application during the composition. I have a fix already, which I'll release after testing better.
|
2009-02-27 10:42:44
| 1,235,750,000 |
resolved fixed
|
01d2b91
| 1,235,760,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java 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/IME.java
|
SWT
|
1,164 | 266,370 |
Bug 266370 CCombo not dismissing popups
|
Run the following code. Open the last CCombo, then the second last third last... You shouldn't be able to have more than one popup open at once. public static void main(String[] args) { try { Display.setAppName("Kevin"); final Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Parent Shell"); shell.setLayout(new RowLayout(SWT.VERTICAL)); CCombo combo = new CCombo(shell, SWT.NONE); combo.setItems(new String[] {"one", "two", "three", "four"}); combo = new CCombo(shell, SWT.NONE); combo.setItems(new String[] {"one", "two", "three", "four"}); combo = new CCombo(shell, SWT.NONE); combo.setItems(new String[] {"one", "two", "three", "four"}); combo = new CCombo(shell, SWT.NONE); combo.setItems(new String[] {"one", "two", "three", "four"}); combo = new CCombo(shell, SWT.NONE); combo.setItems(new String[] {"one", "two", "three", "four"}); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } catch (Throwable t) { t.printStackTrace(); } }
|
2009-02-26 14:58:32
| 1,235,680,000 |
resolved fixed
|
fe5d473
| 1,235,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,165 | 253,075 |
Bug 253075 [misc] No object:text-changed:insert events fired for method completion (and others)
|
In the code editor, whenever Eclipse performs automatic insertion like matching parenthesis or method completion, accessibility infrastructure only sees object:text-caret-moved but no object:text-changed:insert which leaves the idea of the on screen text inside an assistive technology like a screen reader out of sync with reality. I observe this on Linux with GTK + AT-SPI. To reproduce, simply invoke Ctrl+SPACE in a situation where only one possible completion is valid. The newly inserted text appears on screen, but eclipse does not fire any object:text-changed:insert events via ATK. Use accerciser for a quick inspection tool.
|
2008-11-01 15:39:26
| 1,225,570,000 |
resolved fixed
|
a04cd79
| 1,235,670,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
1,166 | 266,180 |
Bug 266180 keyUp not delivered if command key is down
|
An SWT.KeyUp will not be delivered if the command key is down while pressing another key. This can be seen in ControlExample in the Text tab. Turn on the listeners for KeyDown and KeyUp and then type any command key combination that isn't already a menu equivalent. You will get a KeyDown for the cmd key, then a KeyDown for the regular key, but no KeyUp. Then you get a KeyDown for the command key.
|
2009-02-25 13:10:45
| 1,235,590,000 |
resolved fixed
|
248e153
| 1,235,590,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,167 | 261,732 |
Bug 261732 progress does not animate if create before Shell.open()
|
public static void main (String [] args) { try { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Composite comp = new Composite(shell, SWT.NONE); shell.pack(); shell.open(); final ProgressBar bar = new ProgressBar(comp, SWT.INDETERMINATE); bar.pack(); //shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } catch (Throwable e) { e.printStackTrace(); } }
|
2009-01-20 18:01:59
| 1,232,490,000 |
resolved fixed
|
971a8d5
| 1,235,540,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSView.java 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/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,168 | 265,991 |
Bug 265991 Generator tool needs to recognize when bridgesupport.extras files are out of sync
|
Changes made to bridgesupport.extras files outside of the Mac Generator UI are lost if the Mac Generator view is open while updating. To reproduce someone else has to make a change to the .extras files in CVS, and then you need to merge those changes into your workspace. 1. Open the Mac Generator view and pick any class. Select a few methods to be generated, and click the 'Generate' button. 2. Switch to Team Synchronizing. Choose the bridgesupport.extra file you just generated. Now, update to the latest version, which should merge in the changes from CVS. 3. Go back to the Mac Generator and find a method that was added in the update. --> The checkbox for that method isn't selected. The reverse is true for methods that were removed in the update. 4. Now, click Generate again. --> OS.java no longer has the methods and selectors you just added, which usually means a bunch of build errors. The Mac Generator view should either watch for a 'resource out of sync with system' like a text or Java editor, or provide a UI to re-read the .extras file and update its UI.
|
2009-02-24 13:11:12
| 1,235,500,000 |
verified fixed
|
e0eebc7
| 1,235,510,000 |
bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java
|
SWT
|
1,169 | 265,481 |
Bug 265481 [Cocoa] Squiggles/underlines are displayed too close to text
|
Build ID: I20090202-1535 Steps To Reproduce: See attached screen shot - the underline squiggle decoration is displayed too close to the text and thus looks bad / is less readable. More information:
|
2009-02-19 11:28:18
| 1,235,060,000 |
resolved fixed
|
78d0998
| 1,235,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,170 | 265,897 |
Bug 265897 Text throws exceptions and doesn't display bullets in Mylyn task repository setup
|
This is with top-of-tree as of 2/23/09, about noon. If you try to set up a Mylyn task repository for Eclipse.org you will get a dialog prompting you for your bugzilla settings. Attempting to set a password throws exceptions and the field doesn't display bullets. 1. Install Mylyn. I did this with Help -> Install New Software, and then opened up the Collaboration tree item and selected all of the Mylyn-related stuff 2. Then, from the menu, Window -> Show View -> Other. From the dialog, choose Mylyn -> Task Repositories. 3. You should see Eclipse.org as a choice. Double-click it. 4. Uncheck 'Anonymous Access' and fill in your Bugzilla ID and password. --> The password appears in clear text. --> If you tab out of the field and then back into it you'll get an ArrayIndexOutOfBoundsException. --> Unchecking the anonymous field warns you that the repository username and password must not be blank, but even if you enter a username and password they warning doesn't go away and the Finish button doesn't enable.
|
2009-02-23 18:13:16
| 1,235,430,000 |
resolved fixed
|
a428912
| 1,235,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,171 | 265,570 |
Bug 265570 [logview] hover (tooltip) from error log view doesn't go away
|
to reproduce: # display the Error Log view # select an item that has a stack trace message and hover over it so that the tooltip is visible # *without moving the mouse* use Command-Tab to select another application (I used Safari) that will appear covering the current mouse location # move the mouse over the other application so that it is no longer over the screen area where the Error Log view was displayed # Command-Tab back to Eclipse # notice that the tooltip is still displayed as you work in different editors and views # notice that the tooltip will only go away if the Error Log view receives focus again This is a major usability issue since the tooltip obscures part of the screen and it's difficult to figure out how to make it go away.
|
2009-02-19 18:26:13
| 1,235,090,000 |
resolved fixed
|
168cce3
| 1,235,490,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,172 | 265,606 |
Bug 265606 CTabFolder does not show tooltips
|
I20090217-2200 cocoa CTabFolder does not show tooltips. Can be seen on the editor tabs in the SDK, or in the CustomControlExample (enable Maximize and Minimize).
|
2009-02-20 03:58:02
| 1,235,120,000 |
resolved fixed
|
94c3e28
| 1,235,430,000 |
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/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,173 | 264,399 |
Bug 264399 [DND] A deadlock occurs during automated testing of a SWT application on Linux/GTK/x86_64
| null |
2009-02-10 13:22:56
| 1,234,290,000 |
resolved fixed
|
d88b15d
| 1,235,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,174 | 265,393 |
Bug 265393 View menus open again after dialog is closed
|
I20090217-2200 Cocoa View menus open again after a dialog opened from the menu is closed. E.g. go to the Progress view and select Preferences from the view menu. Then click Cancel in the dialog.
|
2009-02-18 20:03:57
| 1,235,010,000 |
resolved fixed
|
809fbd3
| 1,235,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,175 | 265,427 |
Bug 265427 Editor/View switcher: 1 key press forwards by 3 items
| null |
2009-02-19 04:18:09
| 1,235,040,000 |
resolved fixed
|
a0c8a0e
| 1,235,080,000 |
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/Shell.java
|
SWT
|
1,176 | 265,326 |
Bug 265326 next annotation short cut (command+.) broke
|
build 20090212-2000 I like to change the behaviour of next/previous annotation from the default (error, taks) to occurrences (you can use the arrow down chevron to do that). Then I use command + "." to move to the next occurrences of a variable in a method or class. This used to work and now is broken. For previous annotation the shortcut is command + shift + ".", which also used to work but now it runs next annotation instead.
|
2009-02-18 11:30:04
| 1,234,970,000 |
resolved fixed
|
e2dc6be
| 1,235,000,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,177 | 264,425 |
Bug 264425 SashForm doesn't display tooltip text on its Sashes
| null |
2009-02-10 16:40:35
| 1,234,300,000 |
resolved fixed
|
0c26579
| 1,234,910,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
|
SWT
|
1,178 | 252,251 |
Bug 252251 Can't create multiple Displays in same application
|
The following snippet will crash. This prevents our SnippetLaucher code from working on Cocoa. import org.eclipse.swt.widgets.*; public class Snippet1 { public static void main (String [] args) { go(); go(); go(); go(); go(); } public static void go() { Display display = new Display (); Shell shell = new Shell(display); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } }
|
2008-10-27 14:54:33
| 1,225,130,000 |
resolved fixed
|
e4de5e4
| 1,234,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,179 | 263,518 |
Bug 263518 [cocoa] Incorrect colors for eclipse views in 3.5m5
|
I'm using the 'blue' theme on macosx (System Preferences>Appearance). The custom tabs in eclipse still show up as gray, which makes eclipse look like the Graphite (Gray) theme.
|
2009-02-03 14:12:02
| 1,233,690,000 |
resolved fixed
|
e3927f6
| 1,234,900,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSColor.java 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/Display.java
|
SWT
|
1,180 | 265,188 |
Bug 265188 Refactor rename popup (border is black and bottom is missing)
|
Select a variable or method in the java editor. Popup menu and select "Refactor ->Rename". Note that the popup has a black border and the bottom line is missing.
|
2009-02-17 12:33:37
| 1,234,890,000 |
resolved fixed
|
1157128
| 1,234,890,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java 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/Shell.java
|
SWT
|
1,181 | 263,999 |
Bug 263999 [cocoa 64 bits]Key bindings not working well for three combinations
|
With 3.5M5, I just tried to create a block comment with Cmd+Shift+/ and it didn't work. In the key bindings preference page, typing the combination gives this output: Cmd+Shift+?
|
2009-02-06 15:19:58
| 1,233,950,000 |
resolved fixed
|
db44f81
| 1,234,570,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEvent.java 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/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,182 | 262,968 |
Bug 262968 bad scrolling of maximized editor
| null |
2009-01-29 16:03:32
| 1,233,260,000 |
resolved fixed
|
46ea09f
| 1,234,560,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java 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/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java
|
SWT
|
1,183 | 264,762 |
Bug 264762 StackOverflowError with Table.callWindowProc(..) etc.
| null |
2009-02-12 14:32:39
| 1,234,470,000 |
verified fixed
|
66a1a42
| 1,234,480,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
|
SWT
|
1,184 | 264,703 |
Bug 264703 should DND set cursors?
|
I was running eclipse with the 64 bit port and I notice that the cursor was changing properly during drag and drop. The calls to SetThemeCursor() do not run on 64 bit, so I believe the underline OS is changing the cursor for us, probably using the operation value we return. I removed the calls on 32 bit as well and it seems to work fine. Scott, do you think there is any reason to make those calls?
|
2009-02-12 10:35:41
| 1,234,450,000 |
resolved fixed
|
e36b8bd
| 1,234,470,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
|
SWT
|
1,185 | 264,764 |
Bug 264764 Table, Tree, List send DefaultSelection when double-click in header
|
- run the snippet below and observe that DefaultSelection events are incorrectly received if you double-click in the header or in the Table's whitespace - Tree and List have the same problem - this creates some strange behaviours in eclipse - also note that the DefaultSelection event never has its item field set (it should for Table and Tree)
|
2009-02-12 15:01:44
| 1,234,470,000 |
resolved fixed
|
ad85e81
| 1,234,470,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java 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/List.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,186 | 264,212 |
Bug 264212 Link.setForeground() overrides disable color set in Link.enableWidget()
|
Disable a link and then call setForeground(). The link will not display with the disable color.
|
2009-02-09 11:46:15
| 1,234,200,000 |
resolved fixed
|
18a205e
| 1,234,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java
|
SWT
|
1,187 | 262,978 |
Bug 262978 jumpness in quick outline
|
steps 1. open a java file somewhat big (many methods) 2. opent the quick outline (command + o) 3. if necessary scroll the tree down vertically, the bug doens't happen if down scroll the tree down 4. move the mouse over treeitems -> the selection jumps up and down like crazy
|
2009-01-29 17:22:20
| 1,233,270,000 |
resolved fixed
|
5a140b4
| 1,234,460,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java
|
SWT
|
1,188 | 264,705 |
Bug 264705 ArrayStoreException in TextLayout running 64 bit
|
java.lang.ArrayStoreException at java.lang.System.arraycopy(Native Method) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:559) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:334) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:311) at org.eclipse.jface.viewers.StyledCellLabelProvider.paint(StyledCellLabelProvider.java:394) at org.eclipse.jface.viewers.OwnerDrawLabelProvider$OwnerDrawListener.handleEvent(OwnerDrawLabelProvider.java:59) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1157) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1181) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1166) at org.eclipse.swt.widgets.Tree.drawInteriorWithFrame_inView(Tree.java:1008) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4173) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.drawRect(Widget.java:534) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4018) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:3696) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3795) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:63) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2804) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2388) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2352) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:492) 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:194) 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:368) 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:556) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:511) at org.eclipse.equinox.launcher.Main.run(Main.java:1284)
|
2009-02-12 10:59:55
| 1,234,450,000 |
resolved fixed
|
ef58a86
| 1,234,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,189 | 263,971 |
Bug 263971 code inconsistency in Spinner
|
in setMinimum, setMaximum, setDigits we have calls to: textFormatter.setMinimum(NSNumber.numberWithInt(value)); textFormatter.setMaximum(NSNumber.numberWithInt(value)); textFormatter.setMaximumFractionDigits(digits); when the values are set with Spinner#setValues() these natives methods are never called. checking history they were added by skovatch with this description: 222791, 222795 - Added key filtering to the text field, and a number formatter to aid in presentation. Scott, add the calls to setValues were remove them from the other places. Please check if they are really necessary. thanks.
|
2009-02-06 11:39:27
| 1,233,940,000 |
resolved fixed
|
d74f2d5
| 1,234,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
1,190 | 257,188 |
Bug 257188 Regression from 3.3.2 behaviour, no SWT.Activate event is sent when setFocus() is called on child controls
| null |
2008-12-02 08:12:28
| 1,228,220,000 |
resolved fixed
|
71e4fdb
| 1,234,390,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,191 | 263,563 |
Bug 263563 [cocoa] Icon mask problem in dialog help
| null |
2009-02-03 19:10:18
| 1,233,710,000 |
resolved fixed
|
4bd006b
| 1,234,390,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSImageRep.java 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/graphics/Image.java
|
SWT
|
1,192 | 264,553 |
Bug 264553 Shell.open() does not make window key if it's already visible
|
- snippet is below - manifests itself in eclipse by failing to give focus to an already-open Find dialog when Ctrl+F is pressed in a java editor public static void main (String [] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10,10,200,200); shell.setLayout(new FillLayout()); Text text = new Text(shell, SWT.SINGLE); final Shell childShell = new Shell(shell); childShell.setBounds(200,200,200,200); childShell.setLayout(new FillLayout()); childShell.setText("child"); new Text(childShell, SWT.SINGLE); text.addListener(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { childShell.open(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2009-02-11 12:20:37
| 1,234,370,000 |
resolved fixed
|
ccb3f7f
| 1,234,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,193 | 264,255 |
Bug 264255 Tree selection may not be preserved when creating/disposing items
|
- run the snippet below - expand the root item - select "item 1" - press any key --> disposes "item 8" --> note that the selection moved from "item 1" up to "item 0" - to see another case of the same problem, comment out the snippet's "root.getItem(7).dispose();" line and uncomment the line below it --> this causes the selection to move down one line when the new item is created below public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10, 10, 300, 300); shell.setLayout(new FillLayout()); final Tree tree = new Tree(shell, SWT.NONE); final TreeItem root = new TreeItem(tree, SWT.NONE); root.setText("root"); for (int i = 0; i < 8; i++) { new TreeItem(root, SWT.NONE).setText("item " + i); } tree.addListener(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { System.out.println("old selection: " + tree.getSelection()[0]); //root.getItem(7).dispose(); new TreeItem(root, SWT.NONE, 7).setText("new item"); System.out.println("new selection: " + tree.getSelection()[0]); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2009-02-09 16:02:34
| 1,234,210,000 |
resolved fixed
|
b046986
| 1,234,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,194 | 264,019 |
Bug 264019 Hover not working while the mouse is down.
|
In Display.java, line 3681: //TODO hover does not happen while tracking because timer are not dispatched This is because the hover timer also needs to be added in NSEventTrackingRunLoopMode. NSTimer.scheduledTimer... only adds it in the default runloop mode.
|
2009-02-06 19:08:53
| 1,233,970,000 |
resolved fixed
|
b691e1c
| 1,233,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,195 | 262,922 |
Bug 262922 Cursor jumps to top right corner of screen on drag of trim element
|
Version: 3.5.0 Build id: I20090129-0100 1) Click and hold on drag handle of "views" trim item (i.e. the one with the "new view" icon) 2) Move the cursor (i.e. attempt to drag the item). Notice that the cursor jumps to the top right hand edge of the screen. Verified that this does not happen on WinXP.
|
2009-01-29 11:40:34
| 1,233,250,000 |
resolved fixed
|
3bc9371
| 1,233,960,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
1,196 | 263,620 |
Bug 263620 Listeners added to CTabFolder#addTraverseListener(..) cannot block default traversal
| null |
2009-02-04 06:51:05
| 1,233,750,000 |
resolved fixed
|
8aa9f7c
| 1,233,960,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
1,197 | 264,003 |
Bug 264003 Exception in Combo.dragDetect()
|
java.lang.ClassCastException: org.eclipse.swt.internal.cocoa.NSText at org.eclipse.swt.widgets.Combo.dragDetect(Combo.java:525) at org.eclipse.swt.widgets.Control.mouseEvent(Control.java:1909) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:1923) at org.eclipse.swt.widgets.Combo.mouseDown(Combo.java:914) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4004) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:198) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1523) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4062) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:3740) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3760) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:89) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2783) at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:211)
|
2009-02-06 16:04:43
| 1,233,950,000 |
resolved fixed
|
5ffe332
| 1,233,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java
|
SWT
|
1,198 | 260,514 |
Bug 260514 Resizing columns on virtual tables does not always update horizontal scroll bar
| null |
2009-01-09 04:27:39
| 1,231,490,000 |
resolved fixed
|
feb0ca3
| 1,233,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
|
SWT
|
1,199 | 262,955 |
Bug 262955 URLTransfer is missing @since 3.4 tag
| null |
2009-01-29 14:27:19
| 1,233,260,000 |
resolved fixed
|
ba93da8
| 1,233,950,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/URLTransfer.java
|
SWT
|
1,200 | 263,967 |
Bug 263967 Spinner is missing getText() method
|
Spinner is missing getText() method
|
2009-02-06 11:09:41
| 1,233,940,000 |
resolved fixed
|
b75663a
| 1,233,940,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
1,201 | 234,240 |
Bug 234240 Group alpha should not be 0.25 if background color set
|
This could be a native behaviour, but I don't know why it would be, and don't know of an external case of this to compare with. - run the snippet below and note that setting the background to red results in a pinkish colour - in you change the group to be a Composite then it shows red as expected public static void main(final String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Group group = new Group(shell, SWT.NONE); // Composite group = new Composite(shell, SWT.NONE); // works group.setBackground(display.getSystemColor(SWT.COLOR_RED)); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2008-05-27 16:19:35
| 1,211,920,000 |
resolved fixed
|
b35cbf7
| 1,233,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
1,202 | 252,279 |
Bug 252279 Group foreground and background color don't work
|
public static void main(String[] args) { try { Display.setAppName("Kevin"); final Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Parent Shell"); shell.setLayout(new FillLayout()); Group g = new Group(shell, SWT.NONE); g.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); g.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); g.setText("Busted"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } catch (Throwable t) { t.printStackTrace(); } }
|
2008-10-27 17:26:00
| 1,225,140,000 |
resolved fixed
|
504347c
| 1,233,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java
|
SWT
|
1,203 | 263,529 |
Bug 263529 [cocoa] Incorrect file paths when opening .html files in an external browser
|
I tried running this on carbon, and this is reproducible only on cocoa. Steps: 0. Set default browser to use external browser (safari/webkit in my case) 1. Create a project 2. add a .html file in the project 3. Open the .html file using external browser, the generated URL that I see in the *external* browser is the file path appended with the eclipse binary path appended with the actual file path: file:///Volumes/data/eclipse-installs/eclipse-3.5M5-cocoa/Eclipse.app/Contents/MacOS/file:/private/tmp/e/foo/tests/org.eclipse.swtbot.generator.test/junit/html/index.html
|
2009-02-03 15:07:36
| 1,233,690,000 |
resolved fixed
|
fc27cd3
| 1,233,860,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
1,204 | 263,603 |
Bug 263603 Tooltip should not render mnemonic indicator (&) on Cocoa
|
I20090129-1800 Tooltip should not render mnemonic indicator (&) on Cocoa, see current Javadoc of Control#setToolTipText(String) in SWT/win32.
|
2009-02-04 04:10:03
| 1,233,740,000 |
resolved fixed
|
59fbf69
| 1,233,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,205 | 263,677 |
Bug 263677 Tree does not always fully expand in debugger
|
- debug any snippet that has a breakpoint that can be hit on demand (eg.- in a MouseDown listener) - hit the breakpoint, Resume - collapse the Tree in the Debug view, select the top item - do whatever's needed in the snippet to make the breakpoint be hit again -> the Tree is partially expanded but not far enough, so the frame with the breakpoint is not shown
|
2009-02-04 13:51:28
| 1,233,770,000 |
resolved fixed
|
ea820ea
| 1,233,850,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSOutlineView.java 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/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
1,206 | 247,444 |
Bug 247444 [DND] NavigatorDnDService does not update DragSource Transfer if invalid
|
Build ID: I20080617-2000 Steps To Reproduce: 1. Open the JSP Editor on a JSP File. 2. Drag Security Editor onto the JSP Editor 3. 2 Exceptions will occur. See below More information: The problem was discovered in another context within an IBM product. The steps to recreate above show the problem in an eclipse only setting. This problem causes org.eclipse.gmf.runtime.diagram.ui.internal.parts.ImageFileDropTargetListener to throw an exception that prevents an IBM specific Listener from being called. Recently GMF made a change to check that the IResource was not null. In this case it is null, and the FileTransfer should not have been attempted. The problem is that a FileTransfer is initiated on an object that is not a IResource and does not adapt to IResource. The method org.eclipse.ui.internal.navigator.dnd.NavigatorDnDService.findCommonDropAdapterAssistants(Object, TransferData) returns NO_ASSISTANTS, but does not update the DragSource Transfer. This causes a transfer to occur on a DragSource that does not support the transfer. The exception that occurs is: eclipse.buildId=I20080617-2000 java.version=1.6.0_07 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Framework arguments: -product org.eclipse.platform.ide Command-line arguments: -product org.eclipse.platform.ide -data C:\adata\adev\workspace\w7 -dev file:C:/adata/asecure/workspace/7.5dev/.metadata/.plugins/org.eclipse.pde.core/RAD75StrutsDev/dev.properties -os win32 -ws win32 -arch x86 Error Tue Sep 16 08:14:01 EDT 2008 null 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.wst.sse.ui.internal.TransferBuilder$TransferProxyForDelayLoading.nativeToJava(TransferBuilder.java:254) at org.eclipse.swt.dnd.DropTarget.Drop(DropTarget.java:442) at org.eclipse.swt.dnd.DropTarget$3.method6(DropTarget.java:257) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:119) at org.eclipse.swt.internal.ole.win32.COM.DoDragDrop(Native Method) at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:362) at org.eclipse.swt.dnd.DragSource.access$0(DragSource.java:288) at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:171) 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(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: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) Caused by: org.eclipse.swt.SWTException: Data does not have correct format for type at org.eclipse.swt.dnd.DND.error(DND.java:277) at org.eclipse.swt.dnd.DND.error(DND.java:228) at org.eclipse.swt.dnd.FileTransfer.javaToNative(FileTransfer.java:68) at org.eclipse.swt.dnd.DragSource.GetData(DragSource.java:469) at org.eclipse.swt.dnd.DragSource.access$7(DragSource.java:435) at org.eclipse.swt.dnd.DragSource$4.method3(DragSource.java:258) at org.eclipse.swt.internal.ole.win32.COMObject.callback3(COMObject.java:92) at org.eclipse.swt.internal.ole.win32.COM.VtblCall(Native Method) at org.eclipse.swt.internal.ole.win32.IDataObject.GetData(IDataObject.java:25) at org.eclipse.swt.dnd.FileTransfer.nativeToJava(FileTransfer.java:120) ... 37 more
|
2008-09-16 08:33:50
| 1,221,570,000 |
resolved fixed
|
22f1594
| 1,233,840,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceListener.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/motif/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/wpf/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
1,207 | 263,664 |
Bug 263664 Tree.showItem() may not reveal children of non-expanded items
|
- run the snippet below - expand each of the descendent items in the Tree all the way to the bottom - collapse the top item only - double-click anywhere in the Tree's whitespace -> the bottom item is not successfully revealed but it should be public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10, 10, 300, 300); shell.setLayout(new FillLayout()); final Tree tree = new Tree(shell, SWT.MULTI); TreeItem item0 = new TreeItem(tree, SWT.NONE); item0.setText("org.eclipse.swt"); TreeItem item1 = new TreeItem(item0, SWT.NONE); item1.setText("Eclipse SWT/Cocoa"); TreeItem item2 = new TreeItem(item1, SWT.NONE); item2.setText("org.eclipse.swt.graphics"); final TreeItem item3 = new TreeItem(item2, SWT.NONE); item3.setText("Font"); shell.open(); tree.addListener(SWT.MouseDoubleClick, new Listener() { public void handleEvent(Event event) { System.out.println("doit!"); tree.showItem(item3); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2009-02-04 11:59:01
| 1,233,770,000 |
resolved fixed
|
ef75fb2
| 1,233,770,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,208 | 256,469 |
Bug 256469 Popup Outline Ctrl+O has non-deterministic behavior (chars are lost)
|
This is lost (degraded) functionality, starting in 3.4.1, the following keystrokes have non-deterministic behavior: In the CU Editor: CTRL+O,g,e,t,F,o,o Sometimes, the popup outline appears and the prefix "getFoo" is recognized, but often, especially the first time invoking, such as when browsing around classes, any number of characters will be lost, which causes the search to fail (search for "tFoo", for example).
|
2008-11-25 12:34:13
| 1,227,630,000 |
verified fixed
|
59c9551
| 1,233,760,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,209 | 248,796 |
Bug 248796 [DND] Cannot drag and drop files between the Finder (ie. Cocoa and Carbon apps)
|
Just entering a bug based on Scott's comments so that it's not lost. Comments from Scott: At this point Im aware of only one known problem. Cocoa apps dont have a way to provide a list of files to the Finder using HFSFlavors like you have in Carbon. Instead, you place an NSArray of file names on the dragging clipboard with a flavor of NSFilenamesPboardType. Other Cocoa-based apps can understand that format, and I verified it works, but the Finder and other Carbon apps do not, so they dont recognize the drag data. I dont know what functionality is expected of FileTransfer across platforms, so I dont know if the Carbon behavior was accidental or deliberate. Cocoa lets you do HFS promise file drags, but I dont think thats the same thing. Ill do what I can to follow up with folks at Apple.
|
2008-09-26 18:13:48
| 1,222,470,000 |
resolved fixed
|
b5d451f
| 1,233,730,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
1,210 | 256,940 |
Bug 256940 Popup menus: unexpected appearance of application context menus
|
Builds: Eclipse SDK Mac OSX Cocoa N20081126-2000 (compared to Carbon N20081126-2000) In the context of the SWT Controls Example, re the popup menu: Unlike for Carbon, in a number of controls, a right-click on the control opens an application context menu instead of the expected sample popup menu, or when no popup menu is expected (popup menus are disabled). In response to a right-click on the control... For Cocoa: -- Combo control: application context menu appears, both when popups are disabled and when enabled. (Oddly, when the control itself is disabled, the sample popup menu appears.) -- CoolBar control: as expected, except for application context menu that appears in the text area, irrespective of whether popups are enabled or disabled. (This does not happen for Carbon.) -- Link control: application context menu appears when popups are disabled. -- Sash control: application context menu appears in the text area, both when popups are disabled and when enabled. (Aside from this context menu in the text area, popup menus do not seem to be working. For Carbon, popups do not seem to be working at all.) -- Spinner control: application context menu appears, both when popups are disabled and when enabled. -- Text control: application context menu appears when popups are disabled. -- Browser control: browser context menu appears when popups are disabled. (This also happens for Carbon, and may be correct). For Carbon: -- When popup menus are disabled, popups never seem to appear, except in the Browser control (see above). -- When popup menus are enabled, the popups that appear are always the sample popup menu.
|
2008-11-28 15:17:47
| 1,227,900,000 |
resolved fixed
|
985a33e
| 1,233,700,000 |
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
|
SWT
|
1,211 | 263,530 |
Bug 263530 NPE disabling multi-line Text
|
- run the snippet below, wait a few seconds, and the app will close with the NPE at the bottom: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Text text = new Text(shell, SWT.MULTI); shell.open(); display.timerExec(3000, new Runnable() { public void run() { text.setEnabled(false); // <---- } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.widgets.Control.hasFocus(Control.java:1564) at org.eclipse.swt.widgets.Control.isFocusControl(Control.java:1722) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:1106) at org.eclipse.swt.widgets.Control.setFocus(Control.java:2882) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:868) at org.eclipse.swt.widgets.Control.fixFocus(Control.java:1044) at org.eclipse.swt.widgets.Control.setEnabled(Control.java:2862) at win32.Main3$1.run(Main3.java:24) at org.eclipse.swt.widgets.Display.runTimers(Display.java:3104) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2758) at win32.Main3.main(Main3.java:28)
|
2009-02-03 15:10:49
| 1,233,690,000 |
resolved fixed
|
8971dd6
| 1,233,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,212 | 262,970 |
Bug 262970 Drag is too eager to kick in
|
I find the drag to kick in to easily. For example if I click and slightly non intentionally move the mouse, I get the drag icon.
|
2009-01-29 16:26:37
| 1,233,260,000 |
resolved fixed
|
0828fa1
| 1,233,600,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSApplication.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableArray.java 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
|
SWT
|
1,213 | 262,700 |
Bug 262700 Drag feedback image draws above cursor when dragging a Label
|
Using I20090127-0100: 1. Run DNDExample 2. Select Label from the left popup 3. Drag to the drop target ----> The feedback image that tells you a drag is underway draws above the cursor about 10 pixels or so. 4. Now, select any other item in the popup 5. Drag to the drop target ----> Image draws centered around the cursor, as expected.
|
2009-01-27 19:49:46
| 1,233,100,000 |
resolved fixed
|
924accc
| 1,233,600,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
1,214 | 256,919 |
Bug 256919 Disabling SWT controls has no effect for some controls
|
Builds: Eclipse SDK Mac OSX Cocoa N20081126-2000 (compared to Carbon N20081126-2000) In the context of the SWT Controls Example, re the Link, ProgressBar, Sash, TabFolder and Text controls: Disabling the control (Enabled is not selected) has no effect i.e. there is no loss in functionality (unlike in Carbon). N.B. One exception to above: for Carbon, the Sash control is also unaffected by disabling the control.
|
2008-11-28 12:28:37
| 1,227,890,000 |
resolved fixed
|
4e70e8b
| 1,233,590,000 |
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
|
SWT
|
1,215 | 262,866 |
Bug 262866 CCombo is too tall (vertical height)
|
CCombo on Cocoa is very tall. On Carbon CCombos are about 17 pixels high. On Carbon they're about 25 pixels high. The extra height makes forms (such as the Mylyn task editor) look funny and creates much wasted space.
|
2009-01-28 23:35:14
| 1,233,200,000 |
resolved fixed
|
18902fd
| 1,233,590,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java
|
SWT
|
1,216 | 250,575 |
Bug 250575 File -> Switch Workspace -> Other... does not work the first time.
|
Build N20081011-2000 The first time you select File -> Switch Workspace -> Other... the dialog does not appear. The second time you select the menu, the dialog will appear.
|
2008-10-12 10:58:27
| 1,223,820,000 |
resolved fixed
|
9927361
| 1,233,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,217 | 260,761 |
Bug 260761 Need a Cocoa runloop observer for async messages
|
In the Carbon SWT Display has a runloop observer with an observerProc callback that calls runAsyncMessages(false) when the runloop gets kCFRunLoopBeforeWaiting. There's no Cocoa-level abstraction for run loop observers, and since this code is already 64-bit-ready we should carry it forward to the Cocoa SWT.
|
2009-01-12 13:45:15
| 1,231,790,000 |
resolved fixed
|
afaf25c
| 1,233,360,000 |
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/Display.java
|
SWT
|
1,218 | 258,727 |
Bug 258727 CTabFolder should not select an item unless the first button has been pressed
| null |
2008-12-13 02:17:38
| 1,229,150,000 |
resolved fixed
|
c9f8c46
| 1,233,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
1,219 | 263,071 |
Bug 263071 Sash cursor changes while dragging the sash
|
1) Run eclipse. 2) Grab a sash to resize a view. Note that the sash has the resize cursor while grabbing. 3) Now starting a drag operation in the package explorer view and cancel it. 4) Repeat step 2 Note that the cursor changes.
|
2009-01-30 12:27:12
| 1,233,340,000 |
resolved fixed
|
9d45068
| 1,233,350,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java 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/Shell.java
|
SWT
|
1,220 | 262,984 |
Bug 262984 SetThemeCursor() sometimes checks PTR_SIZEOF, sometimes doesn't
|
It checks in DropTarget.draggingEntered() and not in other places in the code. The code should be consistent, that's all. if (OS.PTR_SIZEOF == 4) OS.SetThemeCursor(OS.kThemeNotAllowedCursor);
|
2009-01-29 17:54:48
| 1,233,270,000 |
resolved fixed
|
2965318
| 1,233,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
1,221 | 262,702 |
Bug 262702 Crash on second drag of checkbox
|
Using I20090127-0100: 1. Run DNDExample 2. Choose Checkbox 3. Drag the box to the drop target 4. Click on the checkbox left behind from the drag. ---> Message dumped to the console: 2009-01-27 17:02:43.052 java[4052:80f] unlockFocus called too many time. 5. Now, switch to the Canvas in the left popup. 6. Switch back to the Checkbox 7. Drag the checkbox again. ---> Crash I was also able to get this spewage: 2009-01-27 17:03:01.466 java[4052:80f] *** -[SWTAccessibleNSButtonCell isDescendantOf:]: unrecognized selector sent to instance 0x180210 2009-01-27 17:03:01.468 java[4052:80f] *** -[SWTAccessibleNSButtonCell isDescendantOf:]: unrecognized selector sent to instance 0x180210 2009-01-27 17:03:12.479 java[4052:80f] unlockFocus called too many time. 2009-01-27 17:03:29.252 java[4052:80f] unlockFocus called too many time. Crash Log: Process: java [4052] Path: /System/Library/Frameworks/JavaVM.framework/Versions/1.5/Home/bin/java Identifier: java Version: ??? (???) Code Type: X86 (Native) Parent Process: eclipse [3962] Date/Time: 2009-01-27 17:05:16.118 -0800 OS Version: Mac OS X 10.5.6 (9G52) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000000c0000023 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) Client VM (1.5.0_16-130 mixed mode, sharing) Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_16-130) for macosx-x86, built on Jul 7 2008 13:38:30 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x95789688 Current thread (0x0100bee0): JavaThread "Thread-0" daemon [_thread_in_native, id=-1604524256] Stack: [0xbf800000,0xc0000000) Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;ILorg/eclipse/swt/internal/cocoa/NSSize;)I+0 j org.eclipse.swt.widgets.Widget.setFrameSize(IILorg/eclipse/swt/internal/cocoa/NSSize;)V+31 j org.eclipse.swt.widgets.Control.setFrameSize(IILorg/eclipse/swt/internal/cocoa/NSSize;)V+19 J org.eclipse.swt.widgets.Display.windowDelegateProc(III)I v ~RuntimeStub::alignment_frame_return Runtime1 stub v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(IILorg/eclipse/swt/internal/cocoa/NSRange;)I+0 j org.eclipse.swt.internal.cocoa.NSText.scrollRangeToVisible(Lorg/eclipse/swt/internal/cocoa/NSRange;)V+8 j org.eclipse.swt.widgets.Text.append(Ljava/lang/String;)V+125 j org.eclipse.swt.examples.dnd.DNDExample$4.dragStart(Lorg/eclipse/swt/dnd/DragSourceEvent;)V+9 j org.eclipse.swt.dnd.DNDListener.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+96 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.swt.widgets.Widget.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+25 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V+73 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;)V+4 j org.eclipse.swt.widgets.Widget.notifyListeners(ILorg/eclipse/swt/widgets/Event;)V+19 j org.eclipse.swt.dnd.DragSource.drag(Lorg/eclipse/swt/widgets/Event;)V+47 j org.eclipse.swt.dnd.DragSource$1.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+50 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.swt.widgets.Widget.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+25 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V+73 J org.eclipse.swt.widgets.Display.runDeferredEvents()Z v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.swt.widgets.Display.applicationSendMouseEvent(Lorg/eclipse/swt/internal/cocoa/NSEvent;Z)Z+5 j org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(IIIIII)I+82 j org.eclipse.swt.widgets.Display.applicationProc(IIIIII)I+29 v ~StubRoutines::call_stub J org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;II)I J org.eclipse.swt.widgets.Widget.callSuper(III)V v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.swt.widgets.Widget.mouseDown(III)V+4 j org.eclipse.swt.widgets.Control.mouseDown(III)V+16 J org.eclipse.swt.widgets.Display.windowDelegateProc(III)I v ~RuntimeStub::alignment_frame_return Runtime1 stub v ~StubRoutines::call_stub J org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;II)I J org.eclipse.swt.widgets.Widget.callSuper(III)V J org.eclipse.swt.widgets.Display.windowDelegateProc(III)I v ~RuntimeStub::alignment_frame_return Runtime1 stub v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;II)I+0 j org.eclipse.swt.widgets.Display.applicationSendEvent(III)V+238 j org.eclipse.swt.widgets.Display.applicationProc(III)I+21 v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(III)I+0 j org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(Lorg/eclipse/swt/internal/cocoa/NSEvent;)V+19 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+96 j org.eclipse.swt.examples.dnd.DNDExample.open(Lorg/eclipse/swt/widgets/Display;)V+1209 j org.eclipse.swt.examples.dnd.DNDExample.main([Ljava/lang/String;)V+18 v ~StubRoutines::call_stub Java Threads: ( => current thread ) =>0x0100bee0 JavaThread "Thread-0" daemon [_thread_in_native, id=-1604524256] 0x010090f0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8492544] 0x01008640 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8488960] 0x010081f0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8480768] 0x01007a50 JavaThread "Finalizer" daemon [_thread_blocked, id=8476160] 0x01007690 JavaThread "Reference Handler" daemon [_thread_blocked, id=8470016] 0x01001590 JavaThread "main" [_thread_in_native, id=-1333784576] Other Threads: 0x01006de0 VMThread [id=8466432] 0x01009c30 WatcherThread [id=8496128] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 576K, used 60K [0x25580000, 0x25620000, 0x25a60000) eden space 512K, 7% used [0x25580000, 0x25589468, 0x25600000) from space 64K, 36% used [0x25600000, 0x25605dc0, 0x25610000) to space 64K, 0% used [0x25610000, 0x25610000, 0x25620000) tenured generation total 1408K, used 195K [0x25a60000, 0x25bc0000, 0x29580000) the space 1408K, 13% used [0x25a60000, 0x25a90e18, 0x25a91000, 0x25bc0000) compacting perm gen total 8192K, used 2075K [0x29580000, 0x29d80000, 0x2d580000) the space 8192K, 25% used [0x29580000, 0x29786e18, 0x29787000, 0x29d80000) ro space 8192K, 63% used [0x2d580000, 0x2da97d38, 0x2da97e00, 0x2dd80000) rw space 12288K, 43% used [0x2dd80000, 0x2e2afe08, 0x2e2b0000, 0x2e980000) Virtual Machine arguments: JVM args: -Dorg.eclipse.swt.internal.cocoa.smallFontsx=true -Djava.library.path=/Users/skovatch/src/swt-workspace/org.eclipse.swt.cocoa.macosx -Dfile.encoding=MacRoman Java command: org.eclipse.swt.examples.dnd.DNDExample launcher type: SUN_STANDARD Thread 0 Crashed: 0 libobjc.A.dylib 0x95789688 objc_msgSend + 24 1 com.apple.AppKit 0x907789f7 -[NSView _invalidateFocus] + 99 2 com.apple.AppKit 0x9077eb8b -[NSView setFrameSize:] + 236 3 com.apple.AppKit 0x908e09f5 -[NSTextView(NSPrivate) _setFrameSize:forceScroll:] + 638 4 com.apple.AppKit 0x908e0771 -[NSTextView setFrameSize:] + 56 5 libswt-pi-cocoa-3529.jnilib 0x060e7c69 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSSize_2 + 336 6 ??? 0x035869b1 0 + 56125873 7 ??? 0x03580a7f 0 + 56101503 8 ??? 0x035809d3 0 + 56101331 9 ??? 0x0363be8c 0 + 56868492 10 ??? 0x035f2dc0 0 + 56569280 11 ??? 0x0357e227 0 + 56091175 12 libclient.dylib 0x004d228a 0x3b9000 + 1151626 13 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 14 libclient.dylib 0x00470072 0x3b9000 + 749682 15 libclient.dylib 0x005ce430 JNI_CreateJavaVM_Impl + 127328 16 libswt-cocoa-3529.jnilib 0x060c1f12 callback + 747 17 ??? 0x06ae2118 0 + 112075032 18 libswt-pi-cocoa-3529.jnilib 0x060ed87b setFrameSize + 45 19 com.apple.AppKit 0x908d589e -[NSLayoutManager(NSPrivate) _resizeTextViewForTextContainer:] + 1083 20 com.apple.AppKit 0x90817700 -[NSLayoutManager textContainerForGlyphAtIndex:effectiveRange:] + 535 21 com.apple.AppKit 0x908fe01d -[NSTextView(NSPrivate) _scrollRangeToVisible:forceCenter:] + 489 22 com.apple.AppKit 0x908fde2e -[NSTextView scrollRangeToVisible:] + 56 23 libswt-pi-cocoa-3529.jnilib 0x060e3562 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2 + 259 24 ??? 0x035869b1 0 + 56125873 25 ??? 0x03580a7f 0 + 56101503 26 ??? 0x035809d3 0 + 56101331 27 ??? 0x035809d3 0 + 56101331 28 ??? 0x03580cd9 0 + 56102105 29 ??? 0x0363e28c 0 + 56877708 30 ??? 0x035f2dc0 0 + 56569280 31 ??? 0x035809d3 0 + 56101331 32 ??? 0x035809d3 0 + 56101331 33 ??? 0x035809d3 0 + 56101331 34 ??? 0x035809d3 0 + 56101331 35 ??? 0x035809d3 0 + 56101331 36 ??? 0x035809d3 0 + 56101331 37 ??? 0x0363e28c 0 + 56877708 38 ??? 0x035f2dc0 0 + 56569280 39 ??? 0x035809d3 0 + 56101331 40 ??? 0x035809d3 0 + 56101331 41 ??? 0x0365b968 0 + 56998248 42 ??? 0x035f2dc0 0 + 56569280 43 ??? 0x03580b2b 0 + 56101675 44 ??? 0x03580b2b 0 + 56101675 45 ??? 0x03580a7f 0 + 56101503 46 ??? 0x0357e227 0 + 56091175 47 libclient.dylib 0x004d228a 0x3b9000 + 1151626 48 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 49 libclient.dylib 0x00470072 0x3b9000 + 749682 50 libclient.dylib 0x005ce430 JNI_CreateJavaVM_Impl + 127328 51 libswt-cocoa-3529.jnilib 0x060c1f12 callback + 747 52 ??? 0x06ae20a1 0 + 112074913 53 com.apple.AppKit 0x90866ee3 -[NSWindow nextEventMatchingMask:] + 102 54 com.apple.AppKit 0x908666cf -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1179 55 com.apple.AppKit 0x908661aa -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 541 56 com.apple.AppKit 0x90865a64 -[NSControl mouseDown:] + 888 57 libswt-pi-cocoa-3529.jnilib 0x060e6fa0 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II + 249 58 ??? 0x03640263 0 + 56885859 59 ??? 0x03641140 0 + 56889664 60 ??? 0x035f2dc0 0 + 56569280 61 ??? 0x035809d3 0 + 56101331 62 ??? 0x035809d3 0 + 56101331 63 ??? 0x0363bee4 0 + 56868580 64 ??? 0x035f2dc0 0 + 56569280 65 ??? 0x0357e227 0 + 56091175 66 libclient.dylib 0x004d228a 0x3b9000 + 1151626 67 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 68 libclient.dylib 0x00470072 0x3b9000 + 749682 69 libclient.dylib 0x005ce430 JNI_CreateJavaVM_Impl + 127328 70 libswt-cocoa-3529.jnilib 0x060c1f12 callback + 747 71 ??? 0x06ae2118 0 + 112075032 72 com.apple.AppKit 0x908641a3 -[NSWindow sendEvent:] + 5381 73 libswt-pi-cocoa-3529.jnilib 0x060e6fa0 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II + 249 74 ??? 0x03640263 0 + 56885859 75 ??? 0x03641140 0 + 56889664 76 ??? 0x0363c4f0 0 + 56870128 77 ??? 0x035f2dc0 0 + 56569280 78 ??? 0x0357e227 0 + 56091175 79 libclient.dylib 0x004d228a 0x3b9000 + 1151626 80 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 81 libclient.dylib 0x00470072 0x3b9000 + 749682 82 libclient.dylib 0x005ce430 JNI_CreateJavaVM_Impl + 127328 83 libswt-cocoa-3529.jnilib 0x060c1f12 callback + 747 84 ??? 0x06ae2118 0 + 112075032 85 com.apple.AppKit 0x90830d49 -[NSApplication sendEvent:] + 2941 86 libswt-pi-cocoa-3529.jnilib 0x060e6fa0 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II + 249 87 ??? 0x035869b1 0 + 56125873 88 ??? 0x03580a7f 0 + 56101503 89 ??? 0x035809d3 0 + 56101331 90 ??? 0x0357e227 0 + 56091175 91 libclient.dylib 0x004d228a 0x3b9000 + 1151626 92 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 93 libclient.dylib 0x00470072 0x3b9000 + 749682 94 libclient.dylib 0x005ce430 JNI_CreateJavaVM_Impl + 127328 95 libswt-cocoa-3529.jnilib 0x060c1f12 callback + 747 96 ??? 0x06ae2058 0 + 112074840 97 libswt-pi-cocoa-3529.jnilib 0x060e0c6d Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__III + 194 98 ??? 0x035869b1 0 + 56125873 99 ??? 0x03580a7f 0 + 56101503 100 ??? 0x035809d3 0 + 56101331 101 ??? 0x03580b2b 0 + 56101675 102 ??? 0x035809d3 0 + 56101331 103 ??? 0x0357e227 0 + 56091175 104 libclient.dylib 0x004d228a 0x3b9000 + 1151626 105 libclient.dylib 0x004d1fa6 0x3b9000 + 1150886 106 libclient.dylib 0x00470072 0x3b9000 + 749682 107 libclient.dylib 0x005cf760 JNI_CreateJavaVM_Impl + 132240 108 java 0x000022d7 0x1000 + 4823 109 java 0x000053ec 0x1000 + 17388 110 com.apple.Foundation 0x9217839c __NSThreadPerformPerform + 476 111 com.apple.CoreFoundation 0x9663c5f5 CFRunLoopRunSpecific + 3141 112 com.apple.CoreFoundation 0x9663ccd8 CFRunLoopRunInMode + 88 113 java 0x0000518d 0x1000 + 16781 114 java 0x0000222e 0x1000 + 4654 Thread 1: 0 libSystem.B.dylib 0x949543ae __semwait_signal + 10 1 libSystem.B.dylib 0x9497ed0d pthread_cond_wait$UNIX2003 + 73 2 com.apple.Foundation 0x921bf2d2 -[NSCondition wait] + 210 3 com.apple.Foundation 0x92177c6a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938 4 com.apple.Foundation 0x921cb288 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184 5 java 0x00005574 0x1000 + 17780 6 java 0x00004129 0x1000 + 12585 7 java 0x00004d1e 0x1000 + 15646 8 libSystem.B.dylib 0x9497e095 _pthread_start + 321 9 libSystem.B.dylib 0x9497df52 thread_start + 34 Thread 2: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libSystem.B.dylib 0x949c212f mach_msg_server + 491 3 libclient.dylib 0x003c7b35 0x3b9000 + 60213 4 libclient.dylib 0x003c78f5 0x3b9000 + 59637 5 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 6 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 3: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d11b3 0x3b9000 + 1147315 3 libclient.dylib 0x004d104c 0x3b9000 + 1146956 4 libclient.dylib 0x00415d7d 0x3b9000 + 380285 5 libclient.dylib 0x004158e7 0x3b9000 + 379111 6 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 7 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 4: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d126a 0x3b9000 + 1147498 3 libclient.dylib 0x00416e1a 0x3b9000 + 384538 4 libclient.dylib 0x00416405 0x3b9000 + 381957 5 libclient.dylib 0x005f7ee1 JVM_MonitorWait + 465 6 ??? 0x035869b1 0 + 56125873 7 ??? 0x035809d3 0 + 56101331 8 ??? 0x035809d3 0 + 56101331 9 ??? 0x0357e227 0 + 56091175 10 libclient.dylib 0x004d228a 0x3b9000 + 1151626 11 libclient.dylib 0x004162f3 0x3b9000 + 381683 12 libclient.dylib 0x004161e5 0x3b9000 + 381413 13 libclient.dylib 0x00416125 0x3b9000 + 381221 14 libclient.dylib 0x00416048 0x3b9000 + 381000 15 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 16 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 5: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d126a 0x3b9000 + 1147498 3 libclient.dylib 0x00416e1a 0x3b9000 + 384538 4 libclient.dylib 0x00416405 0x3b9000 + 381957 5 libclient.dylib 0x005f7ee1 JVM_MonitorWait + 465 6 ??? 0x035869b1 0 + 56125873 7 ??? 0x035809d3 0 + 56101331 8 ??? 0x03580aaa 0 + 56101546 9 ??? 0x03580aaa 0 + 56101546 10 ??? 0x0357e227 0 + 56091175 11 libclient.dylib 0x004d228a 0x3b9000 + 1151626 12 libclient.dylib 0x004162f3 0x3b9000 + 381683 13 libclient.dylib 0x004161e5 0x3b9000 + 381413 14 libclient.dylib 0x00416125 0x3b9000 + 381221 15 libclient.dylib 0x00416048 0x3b9000 + 381000 16 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 6: 0 libSystem.B.dylib 0x9494d202 semaphore_wait_trap + 10 1 libclient.dylib 0x004175fe 0x3b9000 + 386558 2 libclient.dylib 0x004171f5 0x3b9000 + 385525 3 libclient.dylib 0x00416048 0x3b9000 + 381000 4 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 5 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 7: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d126a 0x3b9000 + 1147498 3 libclient.dylib 0x004d0f09 0x3b9000 + 1146633 4 libclient.dylib 0x00417c2b 0x3b9000 + 388139 5 libclient.dylib 0x00417908 0x3b9000 + 387336 6 libclient.dylib 0x00416048 0x3b9000 + 381000 7 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 8 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 8: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d126a 0x3b9000 + 1147498 3 libclient.dylib 0x004d104c 0x3b9000 + 1146956 4 libclient.dylib 0x00417d40 0x3b9000 + 388416 5 libclient.dylib 0x00416048 0x3b9000 + 381000 6 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 7 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 9: 0 libSystem.B.dylib 0x9494d1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x949549bc mach_msg + 72 2 libclient.dylib 0x004d11b3 0x3b9000 + 1147315 3 libclient.dylib 0x0041855f 0x3b9000 + 390495 4 libclient.dylib 0x004180aa 0x3b9000 + 389290 5 libclient.dylib 0x0067d935 JVM_RaiseSignal + 441077 6 libSystem.B.dylib 0x949c9204 _pthread_body + 27 Thread 0 crashed with X86 Thread State (32-bit): eax: 0x0017ff50 ebx: 0x907f1951 ecx: 0x9581cb60 edx: 0xc0000003 edi: 0x001a1060 esi: 0x00000002 ebp: 0xbfffc498 esp: 0xbfffc458 ss: 0x0000001f efl: 0x00010206 eip: 0x95789688 cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 cr2: 0xc0000023 Binary Images: 0x1000 - 0xaff0 java ??? (???) <7f012c9ae7fe3ae96bbf23385008035e> /System/Library/Frameworks/JavaVM.framework/Versions/1.5/Home/bin/java 0x11000 - 0x17ffd com.apple.JavaVM 12.2.0 (12.2.0) <8b6c3936c233b265a94623e1912240b4> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM 0x38000 - 0x3ffe0 libverify.dylib ??? (???) <db3ce414deddfe3c77467fd396440ae7> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x45000 - 0x4bfff JavaNativeFoundation ??? (???) <fd9995f2d5028539d72a2567904d4f10> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation 0x60000 - 0x7afef libjava.jnilib ??? (???) <24aa78e55ee848457b927ec18adb3d31> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jnilib 0x88000 - 0x93ffb libzip.jnilib ??? (???) <a1d735f527a054aa35a1d2600a506c00> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jnilib 0x3b9000 - 0x708ffb libclient.dylib ??? (???) <6bff7ba84147422a68494f6ae9942121> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libclient.dylib 0x60bf000 - 0x60c1ffe +libswt-cocoa-3529.jnilib ??? (???) /Users/skovatch/src/swt-workspace/org.eclipse.swt.cocoa.macosx/libswt-cocoa-3529.jnilib 0x60d0000 - 0x60edfff +libswt-pi-cocoa-3529.jnilib ??? (???) /Users/skovatch/src/swt-workspace/org.eclipse.swt.cocoa.macosx/libswt-pi-cocoa-3529.jnilib 0x6c8e000 - 0x6c90fff +eu.willmore.GrowlCode GrowlCode v0.82 (1.8) <79ea82c73851a68ade002f4d7765ce6c> /Library/InputManagers/GrowlCode/GrowlCode.bundle/Contents/MacOS/GrowlCode 0x1ade7000 - 0x1afb9fe7 com.apple.RawCamera.bundle 2.0.10 (2.0.10) <fea6d22f985aec2f376d937291b54ecc> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld 0x90028000 - 0x900b3fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x900b4000 - 0x90754fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x90755000 - 0x90f53fef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x90f54000 - 0x90f7ffe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib 0x90f80000 - 0x90fb7fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x912db000 - 0x9136efff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x9136f000 - 0x9177ffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x91780000 - 0x91780ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x91781000 - 0x91781fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x917b5000 - 0x917caffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x917cb000 - 0x91868ffc com.apple.CFNetwork 422.9 (422.10) <b4c5d8724e3bc3a67c6d55cdab9cec72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x91869000 - 0x918a7ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x918a8000 - 0x918a8ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x918a9000 - 0x91928ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x91929000 - 0x9192dfff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x9192e000 - 0x9196dfef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x9198d000 - 0x9199afe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x919a1000 - 0x91a68ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x91a69000 - 0x91a72fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x91a73000 - 0x91d7bfff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x91dcc000 - 0x91dcffff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x91de0000 - 0x91de0ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x91de1000 - 0x91e5bff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x91e5c000 - 0x91e5cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x91e90000 - 0x91e90ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x91e91000 - 0x91f1bfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x91f1c000 - 0x91feaff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x91feb000 - 0x9201afe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x9201b000 - 0x92026fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x92027000 - 0x92033ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x92034000 - 0x9216cff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib 0x9216d000 - 0x923e8fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x924f6000 - 0x9251afff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib 0x9251b000 - 0x92522ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib 0x92591000 - 0x92598ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x92599000 - 0x925c6feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x925c7000 - 0x925c8ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib 0x925c9000 - 0x925e8ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x925e9000 - 0x925fffff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x92600000 - 0x92628fff libcups.2.dylib ??? (???) <81abd305142ad1b771024eb4a1309e2e> /usr/lib/libcups.2.dylib 0x92629000 - 0x92685ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x92686000 - 0x926a4fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib 0x926a5000 - 0x92786ff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib 0x92787000 - 0x9286cff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x928a2000 - 0x928a9fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib 0x928aa000 - 0x928d2ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x928d3000 - 0x92a19ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x92afa000 - 0x92b15ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x92b16000 - 0x92b50fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x92b51000 - 0x92ca3ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x92ca4000 - 0x92d62fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x92d63000 - 0x92f31ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x92f32000 - 0x92fe4ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib 0x9409d000 - 0x946eefff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x948ef000 - 0x948ffffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x94900000 - 0x94942fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x94943000 - 0x9494bfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x9494c000 - 0x94ab3ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib 0x94db6000 - 0x94dbafff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib 0x94df8000 - 0x950d2ff3 com.apple.CoreServices.CarbonCore 786.10 (786.10) <ec35bb05f67fe0e828d49dda88bbf6d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x951c8000 - 0x951cafff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x951cb000 - 0x9527bfff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x9527c000 - 0x95336fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x95337000 - 0x956f5fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x956f6000 - 0x956f8ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x95716000 - 0x95773ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib 0x95774000 - 0x95854fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib 0x95856000 - 0x958e9ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x958ea000 - 0x95967feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x95a42000 - 0x95a9bff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x95a9c000 - 0x95e39fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x95e7a000 - 0x9634bf3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x9634c000 - 0x96356feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x96421000 - 0x96437fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x965b8000 - 0x965c8fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x965c9000 - 0x966fcfff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x966fd000 - 0x96703fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x9691f000 - 0
|
2009-01-27 20:09:30
| 1,233,110,000 |
resolved fixed
|
8ec0d06
| 1,233,350,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java
|
SWT
|
1,222 | 262,651 |
Bug 262651 Crash on Cocoa
|
Process: eclipse [1012] Path: /Users/chrisaniszczyk/eclipses/eclipse-SDK-3.5M5/eclipse/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.4 (3.4) Code Type: X86 (Native) Parent Process: launchd [1] Date/Time: 2009-01-27 14:09:34.311 -0600 OS Version: Mac OS X 10.5.6 (9G55) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) Client VM (1.5.0_16-133 mixed mode) Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_16-133) for macosx-x86, built on Aug 27 2008 11:00:20 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x3cd30c4f Current thread (0x00601500): JavaThread "main" [_thread_in_native, id=-1607416032] Stack: [0xbf800000,0xc0000000) Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(IILorg/eclipse/swt/internal/cocoa/NSRange;)I+0 j org.eclipse.swt.internal.cocoa.NSText.setSelectedRange(Lorg/eclipse/swt/internal/cocoa/NSRange;)V+8 j org.eclipse.swt.widgets.Spinner.setSelection(IZZZ)V+293 j org.eclipse.swt.widgets.Spinner.setSelection(I)V+29 j org.eclipse.pde.internal.ui.launcher.AbstractPluginBlock$5.widgetSelected(Lorg/eclipse/swt/events/SelectionEvent;)V+145 J org.eclipse.swt.widgets.TypedListener.handleEvent(Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V J org.eclipse.swt.widgets.Display.runDeferredEvents()Z J org.eclipse.swt.widgets.Display.readAndDispatch()Z J org.eclipse.jface.window.Window.runEventLoop(Lorg/eclipse/swt/widgets/Shell;)V v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.jface.window.Window.open()I+49 j org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open()I+36 j org.eclipse.debug.ui.DebugUITools$1.run()V+106 J org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V j org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(Lorg/eclipse/swt/widgets/Shell;Lorg/eclipse/jface/viewers/IStructuredSelection;Ljava/lang/String;Lorg/eclipse/core/runtime/IStatus;)I+25 j org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(Lorg/eclipse/swt/widgets/Shell;Lorg/eclipse/jface/viewers/IStructuredSelection;Ljava/lang/String;)I+4 j org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run()V+53 j org.eclipse.jface.action.Action.runWithEvent(Lorg/eclipse/swt/widgets/Event;)V+1 j org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(Lorg/eclipse/swt/widgets/Event;Z)V+354 j org.eclipse.jface.action.ActionContributionItem.access$2(Lorg/eclipse/jface/action/ActionContributionItem;Lorg/eclipse/swt/widgets/Event;Z)V+3 j org.eclipse.jface.action.ActionContributionItem$5.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+60 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V J org.eclipse.swt.widgets.Display.runDeferredEvents()Z J org.eclipse.swt.widgets.Display.readAndDispatch()Z 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+55 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;+84 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 ) 0x006e69c0 JavaThread "pool-1-thread-27" [_thread_blocked, id=13813248] 0x006e74c0 JavaThread "Worker-10" [_thread_blocked, id=14173184] 0x006e72b0 JavaThread "pool-1-thread-26" [_thread_blocked, id=12003840] 0x006ddce0 JavaThread "pool-1-thread-25" [_thread_blocked, id=12762112] 0x006db640 JavaThread "Worker-9" [_thread_blocked, id=11303424] 0x006bd1e0 JavaThread "Connect thread dev.eclipse.org session" [_thread_in_native, id=10500608] 0x006a3d40 JavaThread "MultiThreadedHttpConnectionManager cleanup" daemon [_thread_blocked, id=9924096] 0x006a0b50 JavaThread "Thread-1328" daemon [_thread_blocked, id=11082752] 0x0068e130 JavaThread "Timer-1" [_thread_blocked, id=12982272] 0x00679350 JavaThread "Timer-0" [_thread_blocked, id=13645312] 0x0066fc20 JavaThread "Worker-5" [_thread_blocked, id=11223552] 0x0066f5d0 JavaThread "Worker-3" [_thread_blocked, id=9775616] 0x0066f2d0 JavaThread "Worker-1" [_thread_blocked, id=12896256] 0x0064afd0 JavaThread "Java indexing" daemon [_thread_blocked, id=9779200] 0x00627030 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=9261568] 0x0061f1e0 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=10314752] 0x006153c0 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=9001472] 0x006130a0 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=8996352] 0x00612c80 JavaThread "State Data Manager" daemon [_thread_blocked, id=8992768] 0x00608e90 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8529920] 0x00608520 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8526336] 0x006080a0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8519680] 0x00607760 JavaThread "Finalizer" daemon [_thread_blocked, id=8516096] 0x00607380 JavaThread "Reference Handler" daemon [_thread_blocked, id=8509952] =>0x00601500 JavaThread "main" [_thread_in_native, id=-1607416032] Other Threads: 0x00606ad0 VMThread [id=8506368] 0x00609b10 WatcherThread [id=8533504] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 9728K, used 105K [0x161e0000, 0x16c60000, 0x17590000) eden space 8704K, 1% used [0x161e0000, 0x161f8290, 0x16a60000) from space 1024K, 0% used [0x16b60000, 0x16b624d0, 0x16c60000) to space 1024K, 0% used [0x16a60000, 0x16a60000, 0x16b60000) tenured generation total 127752K, used 108781K [0x17590000, 0x1f252000, 0x261e0000) the space 127752K, 85% used [0x17590000, 0x1dfcb488, 0x1dfcb600, 0x1f252000) compacting perm gen total 58624K, used 58585K [0x261e0000, 0x29b20000, 0x361e0000) the space 58624K, 99% used [0x261e0000, 0x29b16568, 0x29b16600, 0x29b20000) No shared spaces configured. 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 libswt-pi-cocoa-3529.jnilib 0x3cd30c4f textView_1willChangeSelectionFromCharacterRange_1toCharacterRange + 65 1 com.apple.AppKit 0x9103d071 -[NSTextView(NSSharing) setSelectedRanges:affinity:stillSelecting:] + 1095 2 com.apple.AppKit 0x9103cb50 -[NSTextView(NSSharing) setSelectedRange:] + 64 3 libswt-pi-cocoa-3529.jnilib 0x3cd26562 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2 + 259 4 ??? 0x141e59b1 0 + 337533361 5 ??? 0x141dfa7f 0 + 337508991 6 ??? 0x141df9d3 0 + 337508819 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x149e4698 0 + 345917080 10 ??? 0x144b5ff4 0 + 340484084 11 ??? 0x14860084 0 + 344326276 12 ??? 0x149965ec 0 + 345597420 13 ??? 0x14ba4e40 0 + 347754048 14 ??? 0x14b0c42c 0 + 347128876 15 ??? 0x14251dc0 0 + 337976768 16 ??? 0x141df9d3 0 + 337508819 17 ??? 0x141dfa7f 0 + 337508991 18 ??? 0x141dfa7f 0 + 337508991 19 ??? 0x14b86a34 0 + 347630132 20 ??? 0x141df9d3 0 + 337508819 21 ??? 0x141dfa7f 0 + 337508991 22 ??? 0x141dfa7f 0 + 337508991 23 ??? 0x141df9d3 0 + 337508819 24 ??? 0x141dfcd9 0 + 337509593 25 ??? 0x141df9d3 0 + 337508819 26 ??? 0x141df9d3 0 + 337508819 27 ??? 0x144b5ff4 0 + 340484084 28 ??? 0x14860084 0 + 344326276 29 ??? 0x149965ec 0 + 345597420 30 ??? 0x14ba4e40 0 + 347754048 31 ??? 0x141dfb2b 0 + 337509163 32 ??? 0x141df9d3 0 + 337508819 33 ??? 0x141dfa7f 0 + 337508991 34 ??? 0x141dfa7f 0 + 337508991 35 ??? 0x141dfcd9 0 + 337509593 36 ??? 0x141df9d3 0 + 337508819 37 ??? 0x141dfa7f 0 + 337508991 38 ??? 0x141dfa7f 0 + 337508991 39 ??? 0x141dfdb0 0 + 337509808 40 ??? 0x141dfdb0 0 + 337509808 41 ??? 0x141dfaaa 0 + 337509034 42 ??? 0x141dfaaa 0 + 337509034 43 ??? 0x141dfaaa 0 + 337509034 44 ??? 0x141dd227 0 + 337498663 45 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 46 libjvm.dylib 0x11addfa6 0x119c5000 + 1150886 47 libjvm.dylib 0x11a80101 0x119c5000 + 766209 48 libjvm.dylib 0x11a9ca9f 0x119c5000 + 883359 49 libjvm.dylib 0x11c1b46b JVM_InvokeMethod + 411 50 ??? 0x141e59b1 0 + 337533361 51 ??? 0x141dfaaa 0 + 337509034 52 ??? 0x141dfaaa 0 + 337509034 53 ??? 0x141dfdb0 0 + 337509808 54 ??? 0x141dfaaa 0 + 337509034 55 ??? 0x141df9d3 0 + 337508819 56 ??? 0x141df9d3 0 + 337508819 57 ??? 0x141dd227 0 + 337498663 58 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 59 libjvm.dylib 0x11addfa6 0x119c5000 + 1150886 60 libjvm.dylib 0x11a682dc 0x119c5000 + 668380 61 libjvm.dylib 0x11bd3f3a JNI_CreateJavaVM_Impl + 101482 62 eclipse_1201.so 0x0001ef67 startJavaJNI + 1795 63 eclipse_1201.so 0x0001de11 startJavaVM + 120 64 eclipse_1201.so 0x0001ce01 run + 4756 65 org.eclipse.eclipse 0x0000234d original_main + 1773 66 org.eclipse.eclipse 0x00002a39 main + 1517 67 org.eclipse.eclipse 0x00001aaa start + 54 Thread 1: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libSystem.B.dylib 0x9223312f mach_msg_server + 491 3 libjvm.dylib 0x119d3b85 0x119c5000 + 60293 4 libjvm.dylib 0x119d3945 0x119c5000 + 59717 5 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 6 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 2: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11add04c 0x119c5000 + 1146956 4 libjvm.dylib 0x11a21dcd 0x119c5000 + 380365 5 libjvm.dylib 0x11a21937 0x119c5000 + 379191 6 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 7 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 3: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x145c6888 0 + 341600392 8 ??? 0x14258980 0 + 338004352 9 ??? 0x141dd227 0 + 337498663 10 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 11 libjvm.dylib 0x11a22343 0x119c5000 + 381763 12 libjvm.dylib 0x11a22235 0x119c5000 + 381493 13 libjvm.dylib 0x11a22175 0x119c5000 + 381301 14 libjvm.dylib 0x11a22098 0x119c5000 + 381080 15 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 16 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 4: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x14428c44 0 + 339905604 8 ??? 0x14640970 0 + 342100336 9 ??? 0x14258e00 0 + 338005504 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 5: 0 libSystem.B.dylib 0x921be202 semaphore_wait_trap + 10 1 libjvm.dylib 0x11a2364e 0x119c5000 + 386638 2 libjvm.dylib 0x11a23245 0x119c5000 + 385605 3 libjvm.dylib 0x11a22098 0x119c5000 + 381080 4 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 5 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 6: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11adcf09 0x119c5000 + 1146633 4 libjvm.dylib 0x11a23c7b 0x119c5000 + 388219 5 libjvm.dylib 0x11a23958 0x119c5000 + 387416 6 libjvm.dylib 0x11a22098 0x119c5000 + 381080 7 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 8 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 7: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11add04c 0x119c5000 + 1146956 4 libjvm.dylib 0x11a23d90 0x119c5000 + 388496 5 libjvm.dylib 0x11a22098 0x119c5000 + 381080 6 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 7 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 8: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a245af 0x119c5000 + 390575 4 libjvm.dylib 0x11a240fa 0x119c5000 + 389370 5 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 6 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 9: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a24409 0x119c5000 + 390153 4 libjvm.dylib 0x11c133a1 JVM_Sleep + 481 5 ??? 0x141e59b1 0 + 337533361 6 ??? 0x141df9d3 0 + 337508819 7 ??? 0x141dfcd9 0 + 337509593 8 ??? 0x141dd227 0 + 337498663 9 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 10 libjvm.dylib 0x11a22343 0x119c5000 + 381763 11 libjvm.dylib 0x11a22235 0x119c5000 + 381493 12 libjvm.dylib 0x11a22175 0x119c5000 + 381301 13 libjvm.dylib 0x11a22098 0x119c5000 + 381080 14 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 15 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 10: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfaaa 0 + 337509034 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 11: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfaaa 0 + 337509034 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 12: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfaaa 0 + 337509034 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 13: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfaaa 0 + 337509034 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 14: 0 libSystem.B.dylib 0x921c53ae __semwait_signal + 10 1 libSystem.B.dylib 0x921c5176 usleep$UNIX2003 + 61 2 com.apple.AppKit 0x90f53299 -[NSUIHeartBeat _heartBeatThread:] + 2042 3 com.apple.Foundation 0x95e837ed -[NSThread main] + 45 4 com.apple.Foundation 0x95e83394 __NSThread__main__ + 308 5 libSystem.B.dylib 0x921ef095 _pthread_start + 321 6 libSystem.B.dylib 0x921eef52 thread_start + 34 Thread 15: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfcd9 0 + 337509593 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 16: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 com.apple.CoreFoundation 0x901120ae CFRunLoopRunSpecific + 1790 3 com.apple.CoreFoundation 0x90112cd8 CFRunLoopRunInMode + 88 4 com.apple.CFNetwork 0x94f9d052 CFURLCacheWorkerThread(void*) + 396 5 libSystem.B.dylib 0x921ef095 _pthread_start + 321 6 libSystem.B.dylib 0x921eef52 thread_start + 34 Thread 17: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dfaaa 0 + 337509034 10 ??? 0x141dd227 0 + 337498663 11 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 12 libjvm.dylib 0x11a22343 0x119c5000 + 381763 13 libjvm.dylib 0x11a22235 0x119c5000 + 381493 14 libjvm.dylib 0x11a22175 0x119c5000 + 381301 15 libjvm.dylib 0x11a22098 0x119c5000 + 381080 16 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 17 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 18: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x148a58d8 0 + 344611032 8 ??? 0x148d264c 0 + 344794700 9 ??? 0x14251dc0 0 + 337976768 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dd227 0 + 337498663 12 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 13 libjvm.dylib 0x11a22343 0x119c5000 + 381763 14 libjvm.dylib 0x11a22235 0x119c5000 + 381493 15 libjvm.dylib 0x11a22175 0x119c5000 + 381301 16 libjvm.dylib 0x11a22098 0x119c5000 + 381080 17 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 18 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 19: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x148a58d8 0 + 344611032 8 ??? 0x148d264c 0 + 344794700 9 ??? 0x14251dc0 0 + 337976768 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dd227 0 + 337498663 12 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 13 libjvm.dylib 0x11a22343 0x119c5000 + 381763 14 libjvm.dylib 0x11a22235 0x119c5000 + 381493 15 libjvm.dylib 0x11a22175 0x119c5000 + 381301 16 libjvm.dylib 0x11a22098 0x119c5000 + 381080 17 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 18 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 20: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 com.apple.CoreFoundation 0x901120ae CFRunLoopRunSpecific + 1790 3 com.apple.CoreFoundation 0x90112cd8 CFRunLoopRunInMode + 88 4 com.apple.Foundation 0x95ee6d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320 5 com.apple.Foundation 0x95e837ed -[NSThread main] + 45 6 com.apple.Foundation 0x95e83394 __NSThread__main__ + 308 7 libSystem.B.dylib 0x921ef095 _pthread_start + 321 8 libSystem.B.dylib 0x921eef52 thread_start + 34 Thread 21: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dd227 0 + 337498663 10 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 11 libjvm.dylib 0x11a22343 0x119c5000 + 381763 12 libjvm.dylib 0x11a22235 0x119c5000 + 381493 13 libjvm.dylib 0x11a22175 0x119c5000 + 381301 14 libjvm.dylib 0x11a22098 0x119c5000 + 381080 15 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 16 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 22: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141df9d3 0 + 337508819 9 ??? 0x141dd227 0 + 337498663 10 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 11 libjvm.dylib 0x11a22343 0x119c5000 + 381763 12 libjvm.dylib 0x11a22235 0x119c5000 + 381493 13 libjvm.dylib 0x11a22175 0x119c5000 + 381301 14 libjvm.dylib 0x11a22098 0x119c5000 + 381080 15 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 16 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 23: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x141e59b1 0 + 337533361 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141dd227 0 + 337498663 9 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 10 libjvm.dylib 0x11a22343 0x119c5000 + 381763 11 libjvm.dylib 0x11a22235 0x119c5000 + 381493 12 libjvm.dylib 0x11a22175 0x119c5000 + 381301 13 libjvm.dylib 0x11a22098 0x119c5000 + 381080 14 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 15 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 24: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add26a 0x119c5000 + 1147498 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x14428c44 0 + 339905604 8 ??? 0x14428a0c 0 + 339905036 9 ??? 0x14251dc0 0 + 337976768 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dd227 0 + 337498663 12 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 13 libjvm.dylib 0x11a22343 0x119c5000 + 381763 14 libjvm.dylib 0x11a22235 0x119c5000 + 381493 15 libjvm.dylib 0x11a22175 0x119c5000 + 381301 16 libjvm.dylib 0x11a22098 0x119c5000 + 381080 17 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 18 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 25: 0 libSystem.B.dylib 0x9220d6f2 select$DARWIN_EXTSN + 10 1 libnet.jnilib 0x3b70f016 Java_java_net_SocketInputStream_socketRead0 + 241 2 ??? 0x141e59b1 0 + 337533361 3 ??? 0x141dfa7f 0 + 337508991 4 ??? 0x141dfa7f 0 + 337508991 5 ??? 0x141df9d3 0 + 337508819 6 ??? 0x141dfaaa 0 + 337509034 7 ??? 0x141dfcd9 0 + 337509593 8 ??? 0x141dd227 0 + 337498663 9 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 10 libjvm.dylib 0x11a22343 0x119c5000 + 381763 11 libjvm.dylib 0x11a22235 0x119c5000 + 381493 12 libjvm.dylib 0x11a22175 0x119c5000 + 381301 13 libjvm.dylib 0x11a22098 0x119c5000 + 381080 14 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 15 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 26: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x148a58d8 0 + 344611032 8 ??? 0x148d264c 0 + 344794700 9 ??? 0x14251dc0 0 + 337976768 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dd227 0 + 337498663 12 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 13 libjvm.dylib 0x11a22343 0x119c5000 + 381763 14 libjvm.dylib 0x11a22235 0x119c5000 + 381493 15 libjvm.dylib 0x11a22175 0x119c5000 + 381301 16 libjvm.dylib 0x11a22098 0x119c5000 + 381080 17 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 18 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 27: 0 libSystem.B.dylib 0x921c53ae __semwait_signal + 10 1 libSystem.B.dylib 0x921efd0d pthread_cond_wait$UNIX2003 + 73 2 com.apple.QuartzCore 0x91be6ab9 fe_fragment_thread + 54 3 libSystem.B.dylib 0x921ef095 _pthread_start + 321 4 libSystem.B.dylib 0x921eef52 thread_start + 34 Thread 28: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11c816d7 JVM_RaiseSignal + 407703 4 libjvm.dylib 0x11cd8507 JVM_RaiseSignal + 763591 5 ??? 0x141e59b1 0 + 337533361 6 ??? 0x141df9d3 0 + 337508819 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141dfb2b 0 + 337509163 9 ??? 0x141dfb2b 0 + 337509163 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dfdb0 0 + 337509808 12 ??? 0x141dfaaa 0 + 337509034 13 ??? 0x141dfcd9 0 + 337509593 14 ??? 0x141dd227 0 + 337498663 15 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 16 libjvm.dylib 0x11a22343 0x119c5000 + 381763 17 libjvm.dylib 0x11a22235 0x119c5000 + 381493 18 libjvm.dylib 0x11a22175 0x119c5000 + 381301 19 libjvm.dylib 0x11a22098 0x119c5000 + 381080 20 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 21 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 29: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11c816d7 JVM_RaiseSignal + 407703 4 libjvm.dylib 0x11cd8507 JVM_RaiseSignal + 763591 5 ??? 0x141e59b1 0 + 337533361 6 ??? 0x141df9d3 0 + 337508819 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141dfb2b 0 + 337509163 9 ??? 0x141dfb2b 0 + 337509163 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dfdb0 0 + 337509808 12 ??? 0x141dfaaa 0 + 337509034 13 ??? 0x141dfcd9 0 + 337509593 14 ??? 0x141dd227 0 + 337498663 15 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 16 libjvm.dylib 0x11a22343 0x119c5000 + 381763 17 libjvm.dylib 0x11a22235 0x119c5000 + 381493 18 libjvm.dylib 0x11a22175 0x119c5000 + 381301 19 libjvm.dylib 0x11a22098 0x119c5000 + 381080 20 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 21 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 30: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11a22e6a 0x119c5000 + 384618 4 libjvm.dylib 0x11a22455 0x119c5000 + 382037 5 libjvm.dylib 0x11c03ee1 JVM_MonitorWait + 465 6 ??? 0x148b7959 0 + 344684889 7 ??? 0x148a58d8 0 + 344611032 8 ??? 0x148d264c 0 + 344794700 9 ??? 0x14251dc0 0 + 337976768 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dd227 0 + 337498663 12 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 13 libjvm.dylib 0x11a22343 0x119c5000 + 381763 14 libjvm.dylib 0x11a22235 0x119c5000 + 381493 15 libjvm.dylib 0x11a22175 0x119c5000 + 381301 16 libjvm.dylib 0x11a22098 0x119c5000 + 381080 17 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 18 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 31: 0 libSystem.B.dylib 0x921be1c6 mach_msg_trap + 10 1 libSystem.B.dylib 0x921c59bc mach_msg + 72 2 libjvm.dylib 0x11add1b3 0x119c5000 + 1147315 3 libjvm.dylib 0x11c816d7 JVM_RaiseSignal + 407703 4 libjvm.dylib 0x11cd8507 JVM_RaiseSignal + 763591 5 ??? 0x141e59b1 0 + 337533361 6 ??? 0x141df9d3 0 + 337508819 7 ??? 0x141df9d3 0 + 337508819 8 ??? 0x141dfb2b 0 + 337509163 9 ??? 0x141dfb2b 0 + 337509163 10 ??? 0x141dfaaa 0 + 337509034 11 ??? 0x141dfdb0 0 + 337509808 12 ??? 0x141dfaaa 0 + 337509034 13 ??? 0x141dfcd9 0 + 337509593 14 ??? 0x141dd227 0 + 337498663 15 libjvm.dylib 0x11ade28a 0x119c5000 + 1151626 16 libjvm.dylib 0x11a22343 0x119c5000 + 381763 17 libjvm.dylib 0x11a22235 0x119c5000 + 381493 18 libjvm.dylib 0x11a22175 0x119c5000 + 381301 19 libjvm.dylib 0x11a22098 0x119c5000 + 381080 20 libjvm.dylib 0x11c89935 JVM_RaiseSignal + 441077 21 libSystem.B.dylib 0x9223a204 _pthread_body + 27 Thread 0 crashed with X86 Thread State (32-bit): eax: 0x00000000 ebx: 0x3cd30c1a ecx: 0x00000001 edx: 0x00000000 edi: 0x421eb220 esi: 0x421b0920 ebp: 0xbfffe228 esp: 0xbfffe1f0 ss: 0x0000001f efl: 0x00010286 eip: 0x3cd30c4f cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 cr2: 0x00000004 Binary Images: 0x1000 - 0x3fff +org.eclipse.eclipse 3.4 (3.4) /Users/chrisaniszczyk/eclipses/eclipse-SDK-3.5M5/eclipse/Eclipse.app/Contents/MacOS/eclipse 0x1a000 - 0x20fff +eclipse_1201.so ??? (???) /Users/chrisaniszczyk/eclipses/eclipse-SDK-3.5M5/eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20081201-1815/eclipse_1201.so 0x29000 - 0x2fffd com.apple.JavaVM 12.2.0 (12.2.0) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/JavaVM 0x47000 - 0x4efe0 libverify.dylib ??? (???) <7cc184265a20ef60af782f48077e2131> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x54000 - 0x5afff JavaNativeFoundation ??? (???) <fd9995f2d50
|
2009-01-27 15:11:58
| 1,233,090,000 |
resolved fixed
|
ab19b35
| 1,233,340,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSControl.java 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/Combo.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,223 | 262,888 |
Bug 262888 GTK-BIDI: Mirrored drawText background has wrong size
|
Below is a snippet to reproduce. There are 2 Canvases. One mirrored and one not. You should be able to see how the mirrored drawText behaves differently. It draws background far beyond the end of the string. Display display = new Display(); Shell shell = new Shell(display); shell.open(); shell.setLayout(new FillLayout()); Canvas canvas1 = new Canvas(shell, SWT.LEFT_TO_RIGHT | SWT.BORDER); Canvas canvas2 = new Canvas(shell, SWT.RIGHT_TO_LEFT | SWT.BORDER); PaintListener pl = new PaintListener() { public void paintControl(PaintEvent e) { e.gc.setBackground(Display.getCurrent().getSystemColor( SWT.COLOR_BLUE)); e.gc.setForeground(Display.getCurrent().getSystemColor( SWT.COLOR_WHITE)); e.gc.drawText("Look at the background of this drawText", 0, 0); } }; canvas1.addPaintListener(pl); canvas2.addPaintListener(pl); shell.setMaximized(true); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose();
|
2009-01-29 06:00:05
| 1,233,230,000 |
verified fixed
|
9fc675f
| 1,233,340,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,224 | 263,062 |
Bug 263062 Missing @since tag on ACC.ROLE_SPLITBUTTON
|
HEAD with I20090129-1800 and API baseline set to 3.4: Missing @since tag on ROLE_SPLITBUTTON ACC.java org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility @since tag problem line 54
|
2009-01-30 11:33:56
| 1,233,330,000 |
resolved fixed
|
a3ce480
| 1,233,340,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java
|
SWT
|
1,225 | 262,939 |
Bug 262939 Update Snippet195
|
Build ID: M20080911-1700 Line 29 of Snippet195 should be changed from import org.lwjgl.opengl.glu.GLU; to import org.lwjgl.util.glu.GLU; since glu was moved in LWJGL 2.0.
|
2009-01-29 13:08:10
| 1,233,250,000 |
resolved fixed
|
7626dd6
| 1,233,260,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet195.java
|
SWT
|
1,226 | 262,767 |
Bug 262767 [perfs] Possible regression for "Draw on a window" perf test
|
Looking at M20090121-0842 results it seems that a significant regression occurred since last 2 builds on scenario: org.eclipse.swt.test.Draw on a window (Win XP Sun 1.4.2_10 (3 GHz 2 GB)) Here are the numbers for this test since 3.4.1 for this test machine: R3_4_1 M20080911-1700 -0.5% M20081001-0800 -0.7% M20081023-1830 -0.4% M20081119-1141 0.1% M20081127-1656 -0.4% M20081203-0800 0.1% M20081212-1143 -0.5% M20081217-0800 -0.1% M20081218-1102 -0.2% M20081224-0800 0.4% M20090107-0800 0.0% M20090116-0841 -37.9% M20090121-0842 -39.1% Usually, I wait to get a little bit more feedback to confirm the regression but I think it's better to have a look at this right now due to 3.4.2 deadline...
|
2009-01-28 10:13:26
| 1,233,160,000 |
resolved fixed
|
462af9d
| 1,233,240,000 |
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/performance/Test_situational.java
|
SWT
|
1,227 | 261,553 |
Bug 261553 NPE pasting in combo
|
I20090114-1322 java.lang.NullPointerException at org.eclipse.swt.widgets.Combo.paste(Combo.java:911) 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.ui.internal.handlers.WidgetMethodHandler.execute(WidgetMethodHandler.java:119) 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.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:471) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:823) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:879) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:570) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:511) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:799) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1123) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1148) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1133) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1162) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1158) at org.eclipse.swt.widgets.Combo.sendKeyEvent(Combo.java:1185) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:796) at org.eclipse.swt.widgets.Composite.doCommandBySelector(Composite.java:285) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:3950) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:198) at org.eclipse.swt.widgets.Widget.superKeyDown(Widget.java:1410) at org.eclipse.swt.widgets.Widget.keyDown(Widget.java:810) at org.eclipse.swt.widgets.Control.keyDown(Control.java:1746) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:548) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:3872) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:198) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1494) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:3922) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:3651) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3676) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:85) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2690) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) 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:194) 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:366) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) 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:550) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:505) at org.eclipse.equinox.launcher.Main.run(Main.java:1237)
|
2009-01-19 14:44:22
| 1,232,390,000 |
resolved fixed
|
fd3c574
| 1,233,090,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,228 | 262,573 |
Bug 262573 Hover help is dismissed without selection
|
1) Put a breakpoint in Composite.setLayout() 2) Run a snippet that opens a shell, sets the shell's layout and creates a button 3) When the debug perspective comes up by hitting the breakpoint, hover the local "layout" variable 4) Click the tree in the hover help to select a field. The hover help window is dismissed.
|
2009-01-27 10:48:03
| 1,233,070,000 |
resolved fixed
|
c6bad28
| 1,233,070,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSView.java 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/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,229 | 260,585 |
Bug 260585 Font and spacing is a little bit off compared to Carbon
| null |
2009-01-09 15:09:05
| 1,231,530,000 |
resolved fixed
|
ab7a143
| 1,233,010,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCell.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFont.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSScroller.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTabView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java 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/Button.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.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/DateTime.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/Group.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Label.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Slider.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
1,230 | 256,346 |
Bug 256346 Combo Control: Preferred size determined by currently selected item
|
In the context of the Controls Example, the Cocoa Combo Control when SWT.READ_ONLY is not selected: the "Preferred" size is determined by the currently selected item in the Combo control, not the longest item in the drop down list (as is the case in Carbon). If the currently selected item (when size "Preferred" is chosen) is "Line 4" then the size of the Combo box will be just sufficient to accommodate this value, meaning that if "Longest Line in List" is now selected, then it will be truncated.
|
2008-11-24 17:14:55
| 1,227,560,000 |
resolved fixed
|
6064bf5
| 1,233,010,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java 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/Combo.java
|
SWT
|
1,231 | 253,990 |
Bug 253990 implement OpenGL support
|
A base implementation of this is done and released, but it's not complete and not well tested.
|
2008-11-05 16:16:34
| 1,225,920,000 |
resolved fixed
|
6d6e8bf
| 1,233,000,000 |
bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSOpenGLPixelFormat.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
|
SWT
|
1,232 | 262,117 |
Bug 262117 [Cocoa] problem creating image
|
Build id: I20090113-0918 This seems to have crept up on my last platform update. 1. Take enclosed image. 2. In new plugin project use it as icon somewhere in UI. For example, in a new Perspective. 3. Launch self-hosting runtime. 4. Image doesn't appear and get following error: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:3810) at org.eclipse.swt.SWT.error(SWT.java:3744) at org.eclipse.swt.SWT.error(SWT.java:3715) at org.eclipse.swt.graphics.ImageData.<init>(ImageData.java:422) at org.eclipse.swt.graphics.ImageData.<init>(ImageData.java:284) at org.eclipse.swt.graphics.Image.initNative(Image.java:1067) at org.eclipse.swt.graphics.Image.<init>(Image.java:525) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:162) at org.eclipse.jface.resource.ImageDescriptor.createResource(ImageDescriptor.java:165) at org.eclipse.jface.resource.DeviceResourceManager.allocate(DeviceResourceManager.java:56) at org.eclipse.jface.resource.AbstractResourceManager.create(AbstractResourceManager.java:88) at org.eclipse.jface.resource.LocalResourceManager.allocate(LocalResourceManager.java:82) at org.eclipse.jface.resource.AbstractResourceManager.create(AbstractResourceManager.java:88) at org.eclipse.jface.resource.ResourceManager.createImageWithDefault(ResourceManager.java:192) at org.eclipse.jface.action.ActionContributionItem.updateImages(ActionContributionItem.java:1117) at org.eclipse.jface.action.ActionContributionItem.update(ActionContributionItem.java:942) at org.eclipse.jface.action.ActionContributionItem.fill(ActionContributionItem.java:291) at org.eclipse.ui.actions.PerspectiveMenu.fill(PerspectiveMenu.java:165) at org.eclipse.jface.action.MenuManager.doItemFill(MenuManager.java:734) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:815) at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:467) at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:462) at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:488) 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:1120) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1144) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Menu.menuWillOpen(Menu.java:654) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:3880) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:3516) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3665) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:63) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2663) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) 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:194) 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:366) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) 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:550) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:505) at org.eclipse.equinox.launcher.Main.run(Main.java:1237) at org.eclipse.equinox.launcher.Main.main(Main.java:1213) There may be something funky with the image itself -- my lame attempt at DIY icon creation -- but it did work before and it shows up just fine when defining it in PDE editor.
|
2009-01-22 22:02:02
| 1,232,680,000 |
resolved fixed
|
5df9295
| 1,232,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
|
SWT
|
1,233 | 256,327 |
Bug 256327 [Cocoa] Forms layout oddity
|
Build id: I20081030-1917 1. Create a new plugin project. 2. Go to "Extensions" tab. 3. Extensions list appears at bottom of part, with scroll needed to access. I'm not sure if this is an oddity with the layout for this particular form -- I haven't seen it any other place, but this page looks fine under Carbon. It looks as though the preferred size is not calculating correctly and the alignment is being interpreted as bottom.
|
2008-11-24 15:34:53
| 1,227,560,000 |
resolved fixed
|
a2a1691
| 1,232,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java 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/Sash.java
|
SWT
|
1,234 | 262,346 |
Bug 262346 Control Example should use SWT.ICON_CANCEL for Text widget
| null |
2009-01-26 05:04:33
| 1,232,960,000 |
verified fixed
|
bb95ce6
| 1,232,980,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/TextTab.java
|
SWT
|
1,235 | 262,230 |
Bug 262230 debug hover comes up blank
|
- create a simple snippet, insert a breakpoint, debug the snippet - when the breakpoint is hit hover over a variable to see its value -> the hover that should display the value comes up blank
|
2009-01-23 14:48:38
| 1,232,740,000 |
resolved fixed
|
a6dfe2f
| 1,232,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,236 | 258,675 |
Bug 258675 [Viewers] Arithmetic exception when typing show types dialog
|
Build ID: M20080911-1700 Steps To Reproduce: This bug isn't 100% reproducible, but when running eclipse on AIX via Exceed, when I open the show types dialog (using CTRL+SHIFT+T) and start typing the error dialog informs me of an Arithmetic exception. Sometimes, every letter typed after that causes the same exception to show up. Stack trace is below. More information: java.lang.ArithmeticException: divide by zero at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ItemsListLabelProvider.getSeparatorLabel(FilteredItemsSelectionDialog.java:1720) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ItemsListLabelProvider.getText(FilteredItemsSelectionDialog.java:1653) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ItemsListLabelProvider.update(FilteredItemsSelectionDialog.java:1691) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:145) at org.eclipse.jface.viewers.AbstractTableViewer.doUpdateItem(AbstractTableViewer.java:386) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:880) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.refreshItem(StructuredViewer.java:1476) at org.eclipse.jface.viewers.AbstractTableViewer.replace(AbstractTableViewer.java:1043) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ContentProvider.updateElement(FilteredItemsSelectionDialog.java:2898) at org.eclipse.jface.viewers.AbstractTableViewer$1.handleEvent(AbstractTableViewer.java:78) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:822) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:829) at org.eclipse.swt.widgets.Table.checkData(Table.java:257) at org.eclipse.swt.widgets.TableItem.paint(TableItem.java:1066) at org.eclipse.swt.widgets.Table.onPaint(Table.java:2707) at org.eclipse.swt.widgets.Table.handleEvents(Table.java:1282) at org.eclipse.swt.widgets.Table$1.handleEvent(Table.java:163) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:822) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:829) at org.eclipse.swt.widgets.Composite.XExposure(Composite.java:1403) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1104) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3751) at org.eclipse.swt.internal.motif.OS._XtDispatchEvent(Native Method) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(OS.java:3906) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2809) 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.FilteredResourcesSelectionDialog.open(FilteredResourcesSelectionDialog.java:352) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.queryFileResource(OpenResourceHandler.java:154) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.execute(OpenResourceHandler.java:88) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.run(OpenResourceHandler.java:176) at org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy.execute(ActionDelegateHandlerProxy.java:289) 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.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:472) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:824) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:882) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:571) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:512) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:127) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:903) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:821) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:829) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:935) at org.eclipse.swt.widgets.Widget.XKeyPress(Widget.java:1160) at org.eclipse.swt.widgets.Composite.XKeyPress(Composite.java:1436) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1106) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3751) at org.eclipse.swt.internal.motif.OS._XtDispatchEvent(Native Method) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(OS.java:3906) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2809) 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:386) 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:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) 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)
|
2008-12-12 12:50:10
| 1,229,100,000 |
resolved fixed
|
266dd80
| 1,232,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,237 | 250,443 |
Bug 250443 Content assist shells should not have title bar
|
.
|
2008-10-10 10:44:48
| 1,223,650,000 |
resolved fixed
|
6c565a5
| 1,232,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,238 | 261,576 |
Bug 261576 [mac] Mylyn notifications create an empty ghost shell under Cocoa port
|
Testing out Mylyn under Cocoa. Launched into a new workspace and created my first query. Upon synching each notification popup spawned a ghost shell with it. Could be a bug in the Cocoa port, could be something wrong in Mylyn that's exposed in Cocoa - I'm not sure yet. Will try produce a snippet.
|
2009-01-19 19:54:39
| 1,232,410,000 |
resolved fixed
|
ea22e75
| 1,232,640,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,239 | 258,110 |
Bug 258110 wrapping Link is clipped on Help preference page
| null |
2008-12-09 10:51:32
| 1,228,840,000 |
resolved fixed
|
d956eef
| 1,232,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Group.java
|
SWT
|
1,240 | 261,854 |
Bug 261854 adding/removing TreeItems can be very slow
|
- open the Cocoa class in eclipse - in the outline view press the Show/Hide Fields tool button -> this takes ~1 minute to complete on my machine -> eclipse is using setRedraw() here but the Tree implementation is not taking advantage of it
|
2009-01-21 11:36:43
| 1,232,560,000 |
resolved fixed
|
0da1d9e
| 1,232,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
1,241 | 153,432 |
Bug 153432 [KeyBindings] Unicode keyboards on Mac OSX produce wrong keys when used with modifiers
| null |
2006-08-10 10:22:12
| 1,155,220,000 |
resolved fixed
|
d83561e
| 1,232,500,000 |
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/Widget.java
|
SWT
|
1,242 | 261,354 |
Bug 261354 Need to implement Text#setMessage() on Motif
|
Need to implement Text#setMessage() on Motif
|
2009-01-16 10:05:00
| 1,232,120,000 |
resolved fixed
|
de6790e
| 1,232,380,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,243 | 254,792 |
Bug 254792 Move Tab Group does not work on Mac/Cocoa 3.5M3
|
Build ID: I20081030-1917 Steps To Reproduce: 1. Right-click a group of views, select Move -> Tab Group 2. The group seems to have focus, but can't be dragged anywhere More information: Mac OS X 10.5.5, Java 1.5.0_16
|
2008-11-10 15:15:05
| 1,226,350,000 |
resolved fixed
|
94671ff
| 1,232,130,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
1,244 | 252,419 |
Bug 252419 Spinner foreground and background color don't work.
| null |
2008-10-28 12:30:29
| 1,225,210,000 |
resolved fixed
|
bcf2b36
| 1,232,060,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
1,245 | 252,479 |
Bug 252479 resizing preference dialog tree with keyboard causes system beep
|
open preference dialog on the top right there's a little arrow that opens a menu. in that menu, click the "Resize Tree" menu item. resize the tree with the arrow keys. Every key press causes a system beep.
|
2008-10-28 15:22:35
| 1,225,220,000 |
resolved fixed
|
1978495
| 1,232,050,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTCanvasView.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.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/Sash.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,246 | 261,228 |
Bug 261228 fix doc for SWT.SEARCH
|
SWT.SEARCH allows setMessage to work. setMessage was made to work on all platforms. In some platforms SWT.SEARCH will also change the appearance of the text widget.
|
2009-01-15 12:54:19
| 1,232,040,000 |
resolved fixed
|
e36dda8
| 1,232,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,247 | 261,052 |
Bug 261052 Possible leak in DragSource.drag() method
|
It creates a color and does not dispose it. This is not a big problem since colors are not allocated (just a float array), but it shows up as a leak for users of Sleak. It also creates an image "newImageWithAlpha" that does not seem to be disposed.
|
2009-01-14 12:36:53
| 1,231,950,000 |
resolved fixed
|
e2c5069
| 1,231,980,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
1,248 | 244,597 |
Bug 244597 Cannot activate shell programatically on gtk
|
- works on win2000, fails on RHEL4 and Ubuntu 8.04 - update the name of the image in the snippet below to any available image file that's a good size to show in the system tray - run the snippet - give focus to some other open shell - click on the tray icon that was added by this snippet and note that it activates the snippet's shell successfully - give focus to some other open shell again - this time right-click on the tray icon added by this snippet and select its menu item -> this item attempts to activate the snippet's shell in an identical manner, but is not successful public static void main(String[] args) { final Display display = new Display(); Image image = new Image(display, "./bookmark.gif"); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); new Text(shell, SWT.MULTI); final Menu menu = new Menu(shell, SWT.POP_UP); MenuItem menuItemShow = new MenuItem(menu, SWT.NONE); menuItemShow.setText("Show window"); menuItemShow.addSelectionListener(new SelectionAdapter() { public void widgetSelected(final SelectionEvent e) { shell.forceActive(); } }); Tray tray = display.getSystemTray(); TrayItem item = new TrayItem(tray, SWT.NONE); item.setImage(image); item.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { System.out.println("trying..."); shell.forceActive(); } }); item.addMenuDetectListener(new MenuDetectListener() { public void menuDetected(MenuDetectEvent e) { menu.setVisible(true); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } image.dispose(); display.dispose(); }
|
2008-08-19 14:58:50
| 1,219,170,000 |
resolved fixed
|
da3d449
| 1,231,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java
|
SWT
|
1,249 | 261,099 |
Bug 261099 CTabItem curvers are blurry
| null |
2009-01-14 16:37:24
| 1,231,970,000 |
resolved fixed
|
9a6939d
| 1,231,970,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
1,250 | 259,379 |
Bug 259379 [64] Text fields in Project Properties dialog have incorrect background
| null |
2008-12-19 10:14:23
| 1,229,700,000 |
resolved fixed
|
ef52428
| 1,231,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.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/Label.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,251 | 259,003 |
Bug 259003 Eclipse Cocoa: drag and drop in Package Explorer sometimes incorrectly shows icon indicating illegal drop target
|
Build ID: I20081211-1908 Steps To Reproduce: 1. Package Explorer: Top Level Elements > Working Sets, and create a working set, e.g. "my working set" 2. New Java project "foo"; it will show up in the "Other Projects" working set 3. Drag project "foo" onto "my working set" Actual result: Sometimes, the cursor will be shown with a "don't drop here" circle-with-slash, indicating that you aren't allowed to drop it. (See screenshot.) But if you do drop it, it moves just fine. Expected result: Mouse cursor should correctly indicate whether it is over a valid drop target.
|
2008-12-16 14:17:28
| 1,229,460,000 |
resolved fixed
|
83d6a25
| 1,231,890,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
1,252 | 253,786 |
Bug 253786 Cannot change tabs in TabFolder using keyboard
|
Build id: I20081104-0916 On Carbon, give focus to any tab in a tab folder, then you can type the arrow keys to move to another tab, and space to select it. You cannot do this in SWT Cocoa TabFolders. This is a keyboard accessibility issue.
|
2008-11-04 16:31:12
| 1,225,830,000 |
resolved fixed
|
38a4564
| 1,231,880,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java
|
SWT
|
1,253 | 251,454 |
Bug 251454 Table and Tree do not respect style SWT.NO_SCROLL
| null |
2008-10-20 15:03:56
| 1,224,530,000 |
resolved fixed
|
1f489e5
| 1,231,880,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,254 | 254,533 |
Bug 254533 Can't invoke context menu using keybindings
|
Build ID: I20081104-0916 Steps To Reproduce: 1. open a file in the navigator 2. ensure focus in the file content 3. move mouse into editor window 4. press cmd-option-w. expected: On Mac OS X swt carbon, this would bring up the "show in..." context menu actual: nothing. More information: same applies for the other context menus with keybindings (refactor, source) in the outline view, the menus do appear (if the view has focus).
|
2008-11-06 18:08:44
| 1,226,010,000 |
resolved fixed
|
ce1f959
| 1,231,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java
|
SWT
|
1,255 | 256,825 |
Bug 256825 Eclipse "Problems Tab": dragging column separators causes application to hang
|
Builds: Eclipse SDK Mac OSX Cocoa N20081126-2000 (compared to Carbon N20081126-2000) In the context of the Eclipse SDK Workbench, re the Problems Tab: Reproducible hang: Dragging the column separators until they touch (or cross each other) causes the application to go into an infinite loop requiring a force quit. The problem is so bad (seems to use so many resources) that my entire laptop froze until I was able to shut down the offending Eclipse app. The source of the problem appears to be that columns in the Problems tab do not have a minimum width; this allows one to drag the column separators until they effectively overlap. For Carbon, columns in the Problems tab have a minimum width which prevents column separators from being dragged too close together.
|
2008-11-27 13:39:43
| 1,227,810,000 |
resolved fixed
|
3609a69
| 1,231,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,256 | 260,870 |
Bug 260870 buttons in perspective switcher appear too tight
|
- the selected button in eclipse's perspective chooser (the right control in its CBanner) does not show any margin between its left edge and its image - this is an issue with ToolItems in general: any time a ToolItem contains text and an image, the image is always shown flush against one of the item's edges
|
2009-01-13 11:17:17
| 1,231,860,000 |
resolved fixed
|
1fb79df
| 1,231,860,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSButtonCell.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSControl.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTButtonCell.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/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,257 | 256,159 |
Bug 256159 Certain Images copied from Lotus Notes and pasted using SWT's Clipboard are corrupted
|
Build ID: I20080617-2000 Steps To Reproduce: I can only reproduce this with a few images that were emailed to me in Lotus Notes. I do not know their format. If I upload the image, this bug is not reproducible, therefore, to reproduce, I'll need to forward an email to a developer who is using Notes. Then copy the image in the email, and paste using the SWT Clipboard example. You'll see that the image is corrupted (it's almost as if its an offset problem - the width seems shifted). I have pasted this image into other programs, including Lotus Notes, Word, and some freeware image utilities, and they are not corrupted when I paste there. More information:
|
2008-11-21 14:04:32
| 1,227,290,000 |
resolved fixed
|
1c68849
| 1,231,860,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/ImageTransfer.java
|
SWT
|
1,258 | 260,598 |
Bug 260598 [64] Crash launching N20090108-2000
|
Download 64-bit version of N20090108-2000 and run it: Process: eclipse [13278] Path: /Users/ssq/Downloads/eclipse64/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.4 (3.4) Code Type: X86-64 (Native) Parent Process: launchd [70] Date/Time: 2009-01-09 16:41:59.431 -0500 OS Version: Mac OS X 10.5.6 (9G55) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: 0x000000000000000d, 0x0000000000000000 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) 64-Bit Server VM (1.5.0_16-133 mixed mode) Virtual Machine version: Java HotSpot(TM) 64-Bit Server VM (1.5.0_16-133) for macosx-amd64, built on Aug 27 2008 11:07:32 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x00007fff831a2d72 Current thread (0x0000000112800a00): JavaThread "main" [_thread_in_native, id=1887008544] Stack: [0x00007fff5f400000,0x00007fff5fc00000) Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(JJ)J+0 j org.eclipse.swt.internal.cocoa.NSBezierPath.fill()V+7 j org.eclipse.swt.graphics.GC.fillRectangle(IIII)V+136 j org.eclipse.swt.widgets.CoolItem.createArrowImage(II)Lorg/eclipse/swt/graphics/Image;+154 j org.eclipse.swt.widgets.CoolItem.updateChevron()V+199 j org.eclipse.swt.widgets.CoolItem.setBounds(IIII)V+128 j org.eclipse.swt.widgets.CoolBar.layoutItems()I+254 j org.eclipse.swt.widgets.CoolBar.onResize()V+1 j org.eclipse.swt.widgets.CoolBar$1.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+140 j org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+214 j org.eclipse.swt.widgets.Widget.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+25 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V+73 j org.eclipse.swt.widgets.Widget.sendEvent(I)V+4 j org.eclipse.swt.widgets.Control.resized()V+3 j org.eclipse.swt.widgets.Composite.resized()V+1 j org.eclipse.swt.widgets.Control.setFrameSize(JJLorg/eclipse/swt/internal/cocoa/NSSize;)V+69 j org.eclipse.swt.widgets.Display.windowDelegateProc(JJJ)J+230 v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(JJLorg/eclipse/swt/internal/cocoa/NSRect;)J+0 j org.eclipse.swt.internal.cocoa.NSView.setFrame(Lorg/eclipse/swt/internal/cocoa/NSRect;)V+8 j org.eclipse.swt.widgets.Control.setBounds(IIIIZZ)V+58 v ~C2IAdapter J org.eclipse.swt.widgets.Control.setBounds(Lorg/eclipse/swt/graphics/Rectangle;)V v ~I2CAdapter j org.eclipse.ui.internal.layout.CacheWrapper$WrapperLayout.layout(Lorg/eclipse/swt/widgets/Composite;Z)V+42 j org.eclipse.swt.widgets.Composite.updateLayout(Z)V+68 j org.eclipse.swt.widgets.Composite.resized()V+19 j org.eclipse.swt.widgets.Control.setFrameSize(JJLorg/eclipse/swt/internal/cocoa/NSSize;)V+69 j org.eclipse.swt.widgets.Display.windowDelegateProc(JJJ)J+230 v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(JJLorg/eclipse/swt/internal/cocoa/NSRect;)J+0 j org.eclipse.swt.internal.cocoa.NSView.setFrame(Lorg/eclipse/swt/internal/cocoa/NSRect;)V+8 j org.eclipse.swt.widgets.Control.setBounds(IIIIZZ)V+58 v ~C2IAdapter J org.eclipse.swt.widgets.Control.setBounds(Lorg/eclipse/swt/graphics/Rectangle;)V v ~I2CAdapter j org.eclipse.swt.custom.CBannerLayout.layout(Lorg/eclipse/swt/widgets/Composite;Z)V+664 j org.eclipse.swt.widgets.Composite.updateLayout(Z)V+68 j org.eclipse.swt.widgets.Composite.layout(ZZ)V+24 j org.eclipse.swt.widgets.Composite.layout(Z)V+15 j org.eclipse.swt.custom.CBanner.setRightWidth(I)V+20 j org.eclipse.ui.internal.PerspectiveSwitcher.showPerspectiveBar()V+87 j org.eclipse.ui.internal.PerspectiveSwitcher.setPerspectiveBarLocation(Ljava/lang/String;)V+33 j org.eclipse.ui.internal.PerspectiveSwitcher.createControl(Lorg/eclipse/swt/widgets/Composite;)V+32 j org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents(Lorg/eclipse/swt/widgets/Shell;)V+203 j org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents(Lorg/eclipse/swt/widgets/Shell;)V+5 j org.eclipse.ui.application.WorkbenchWindowAdvisor.createWindowContents(Lorg/eclipse/swt/widgets/Shell;)V+8 j org.eclipse.ui.internal.WorkbenchWindow.createContents(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+8 j org.eclipse.jface.window.Window.create()V+14 j org.eclipse.ui.internal.Workbench$59.runWithException()V+19 j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1 j org.eclipse.swt.widgets.RunnableLock.run()V+11 j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29 j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+122 j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+44 j org.eclipse.ui.internal.Workbench$27.runWithException()V+17 j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1 j org.eclipse.swt.widgets.RunnableLock.run()V+11 j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29 j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+122 j org.eclipse.ui.internal.Workbench.runUI()I+220 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;+84 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;+148 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 ) 0x0000000112a81800 JavaThread "Thread-2" [_thread_blocked, id=9342464] 0x00000001129f0600 JavaThread "Thread-1" [_thread_blocked, id=9790464] 0x00000001129f0200 JavaThread "Worker-0" [_thread_blocked, id=9593344] 0x00000001128d0600 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=10593280] 0x00000001128b3400 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=9282560] 0x00000001128b2600 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=8794112] 0x00000001128b2200 JavaThread "State Saver" [_thread_blocked, id=8853504] 0x0000000112836800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8745984] 0x0000000112835c00 JavaThread "CompilerThread1" daemon [_thread_blocked, id=8739328] 0x0000000112835000 JavaThread "CompilerThread0" daemon [_thread_in_native, id=8732672] 0x0000000112834400 JavaThread "AdapterThread" daemon [_thread_blocked, id=8726016] 0x0000000112833800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8718848] 0x0000000112827000 JavaThread "Finalizer" daemon [_thread_blocked, id=8712192] 0x0000000112826c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=8705536] =>0x0000000112800a00 JavaThread "main" [_thread_in_native, id=1887008544] Other Threads: 0x0000000100309b70 VMThread [id=8698880] 0x000000010030dcf0 WatcherThread [id=8752640] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 12288K, used 8979K [0x0000000117580000, 0x00000001182d0000, 0x000000011cad0000) eden space 10944K, 69% used [0x0000000117580000, 0x0000000117cf4c18, 0x0000000118030000) from space 1344K, 100% used [0x0000000118180000, 0x00000001182d0000, 0x00000001182d0000) to space 1344K, 0% used [0x0000000118030000, 0x0000000118030000, 0x0000000118180000) tenured generation total 27328K, used 24756K [0x000000011cad0000, 0x000000011e580000, 0x0000000127580000) the space 27328K, 90% used [0x000000011cad0000, 0x000000011e2fd260, 0x000000011e2fd400, 0x000000011e580000) compacting perm gen total 25728K, used 25522K [0x0000000127580000, 0x0000000128ea0000, 0x0000000137580000) the space 25728K, 99% used [0x0000000127580000, 0x0000000128e6caa0, 0x0000000128e6cc00, 0x0000000128ea0000) No shared spaces configured. 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.CoreGraphics 0x00007fff831a2d72 path_finalize + 15 1 com.apple.CoreFoundation 0x00007fff814d4c82 _CFRelease + 146 2 com.apple.AppKit 0x00007fff80cc265e -[NSBezierPath(NSBezierPathDevicePrimitives) _doUserPathWithOp:inContext:] + 242 3 com.apple.AppKit 0x00007fff80cc2547 -[NSBezierPath fill] + 131 4 libswt-pi-cocoa-3526.jnilib 0x000000013aef8249 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__JJ + 46 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fde1 0 + 4636278241 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fd36 0 + 4636278070 9 ??? 0x000000011457fe53 0 + 4636278355 10 ??? 0x000000011457fd36 0 + 4636278070 11 ??? 0x000000011457fd36 0 + 4636278070 12 ??? 0x000000011457fe1a 0 + 4636278298 13 ??? 0x000000011457fd36 0 + 4636278070 14 ??? 0x0000000114580138 0 + 4636279096 15 ??? 0x000000011457fd36 0 + 4636278070 16 ??? 0x000000011457fd36 0 + 4636278070 17 ??? 0x000000011457fd36 0 + 4636278070 18 ??? 0x000000011457fd36 0 + 4636278070 19 ??? 0x000000011457fd36 0 + 4636278070 20 ??? 0x000000011457fd36 0 + 4636278070 21 ??? 0x000000011457fd36 0 + 4636278070 22 ??? 0x000000011457d329 0 + 4636267305 23 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 24 libjvm.dylib 0x0000000111a985b5 0x1119c5000 + 865717 25 libjvm.dylib 0x0000000111a4ad29 0x1119c5000 + 548137 26 libjvm.dylib 0x0000000111c566ac JNI_CreateJavaVM_Impl + 133468 27 libswt-cocoa-3526.jnilib 0x000000013ae7b069 callback + 1240 28 libswt-cocoa-3526.jnilib 0x000000013ae5a90a fn4_3 + 47 29 libswt-pi-cocoa-3526.jnilib 0x000000013af008a1 setFrameSize + 63 30 com.apple.AppKit 0x00007fff80ac75ba -[NSView setFrame:] + 276 31 libswt-pi-cocoa-3526.jnilib 0x000000013aefa33b Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2 + 134 32 ??? 0x0000000114589542 0 + 4636316994 33 ??? 0x000000011457fde1 0 + 4636278241 34 ??? 0x000000011457fd36 0 + 4636278070 Thread 1: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libSystem.B.dylib 0x00007fff846280b0 mach_msg_server + 436 3 libjvm.dylib 0x00000001119d27ed 0x1119c5000 + 55277 4 libjvm.dylib 0x00000001119d25c5 0x1119c5000 + 54725 5 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 6 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 2: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a976cb 0x1119c5000 + 861899 3 libjvm.dylib 0x0000000111a974fd 0x1119c5000 + 861437 4 libjvm.dylib 0x0000000111a2d5b4 0x1119c5000 + 427444 5 libjvm.dylib 0x0000000111a2d12b 0x1119c5000 + 426283 6 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 7 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 3: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457d329 0 + 4636267305 9 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 10 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 11 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 12 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 13 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 14 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 15 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 4: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fe53 0 + 4636278355 8 ??? 0x000000011457fe53 0 + 4636278355 9 ??? 0x000000011457d329 0 + 4636267305 10 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 11 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 12 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 13 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 14 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 15 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 16 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 5: 0 libSystem.B.dylib 0x00007fff845bad72 semaphore_wait_trap + 10 1 libjvm.dylib 0x0000000111a2f03b 0x1119c5000 + 434235 2 libjvm.dylib 0x0000000111a2ec65 0x1119c5000 + 433253 3 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 4 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 5 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 6: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a973c7 0x1119c5000 + 861127 4 libjvm.dylib 0x0000000111a2f61e 0x1119c5000 + 435742 5 libjvm.dylib 0x0000000111a2f327 0x1119c5000 + 434983 6 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 7 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 8 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 7: 0 libjvm.dylib 0x0000000111b506a8 0x1119c5000 + 1619624 1 libjvm.dylib 0x0000000111db42d8 JVM_RaiseSignal + 1150392 2 libjvm.dylib 0x0000000111b92eff 0x1119c5000 + 1892095 3 libjvm.dylib 0x0000000111b94708 0x1119c5000 + 1898248 4 libjvm.dylib 0x0000000111b52501 0x1119c5000 + 1627393 5 libjvm.dylib 0x0000000111a30277 0x1119c5000 + 438903 6 libjvm.dylib 0x0000000111a2f4dd 0x1119c5000 + 435421 7 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 8 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 9 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 8: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a973c7 0x1119c5000 + 861127 4 libjvm.dylib 0x0000000111a2f61e 0x1119c5000 + 435742 5 libjvm.dylib 0x0000000111a2f327 0x1119c5000 + 434983 6 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 7 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 8 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 9: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a974fd 0x1119c5000 + 861437 4 libjvm.dylib 0x0000000111a2f756 0x1119c5000 + 436054 5 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 6 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 7 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 10: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a976cb 0x1119c5000 + 861899 3 libjvm.dylib 0x0000000111a2ff09 0x1119c5000 + 438025 4 libjvm.dylib 0x0000000111a2fae0 0x1119c5000 + 436960 5 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 6 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 11: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a976cb 0x1119c5000 + 861899 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x0000000114580138 0 + 4636279096 8 ??? 0x000000011457d329 0 + 4636267305 9 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 10 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 11 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 12 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 13 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 14 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 15 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 12: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fe53 0 + 4636278355 9 ??? 0x000000011457d329 0 + 4636267305 10 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 11 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 12 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 13 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 14 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 15 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 16 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 13: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fe53 0 + 4636278355 9 ??? 0x000000011457d329 0 + 4636267305 10 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 11 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 12 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 13 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 14 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 15 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 16 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 14: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fe53 0 + 4636278355 9 ??? 0x000000011457d329 0 + 4636267305 10 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 11 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 12 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 13 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 14 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 15 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 16 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 15: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a976cb 0x1119c5000 + 861899 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fe53 0 + 4636278355 9 ??? 0x000000011457d329 0 + 4636267305 10 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 11 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 12 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 13 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 14 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 15 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 16 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 16: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fd36 0 + 4636278070 9 ??? 0x000000011457fd36 0 + 4636278070 10 ??? 0x000000011457fd36 0 + 4636278070 11 ??? 0x000000011457fd36 0 + 4636278070 12 ??? 0x000000011457fefe 0 + 4636278526 13 ??? 0x000000011457fefe 0 + 4636278526 14 ??? 0x000000011457d329 0 + 4636267305 15 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 16 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 17 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 18 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 19 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 20 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 21 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 17: 0 libSystem.B.dylib 0x00007fff845bad36 mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff845c2373 mach_msg + 59 2 libjvm.dylib 0x0000000111a975f7 0x1119c5000 + 861687 3 libjvm.dylib 0x0000000111a2e87d 0x1119c5000 + 432253 4 libjvm.dylib 0x0000000111c82430 JVM_MonitorWait + 416 5 ??? 0x0000000114589542 0 + 4636316994 6 ??? 0x000000011457fd36 0 + 4636278070 7 ??? 0x000000011457fd36 0 + 4636278070 8 ??? 0x000000011457fd36 0 + 4636278070 9 ??? 0x000000011457fd36 0 + 4636278070 10 ??? 0x000000011457fd36 0 + 4636278070 11 ??? 0x000000011457fd36 0 + 4636278070 12 ??? 0x000000011457fd36 0 + 4636278070 13 ??? 0x000000011457fd36 0 + 4636278070 14 ??? 0x0000000114580138 0 + 4636279096 15 ??? 0x000000011457fd36 0 + 4636278070 16 ??? 0x000000011457fe53 0 + 4636278355 17 ??? 0x000000011457fe53 0 + 4636278355 18 ??? 0x0000000114580138 0 + 4636279096 19 ??? 0x000000011457fd36 0 + 4636278070 20 ??? 0x000000011457fe53 0 + 4636278355 21 ??? 0x0000000114580255 0 + 4636279381 22 ??? 0x000000011457d329 0 + 4636267305 23 libjvm.dylib 0x0000000111a98890 0x1119c5000 + 866448 24 libjvm.dylib 0x0000000111a2db3f 0x1119c5000 + 428863 25 libjvm.dylib 0x0000000111a2da16 0x1119c5000 + 428566 26 libjvm.dylib 0x0000000111a2d96a 0x1119c5000 + 428394 27 libjvm.dylib 0x0000000111a2d88a 0x1119c5000 + 428170 28 libjvm.dylib 0x0000000111dac427 JVM_RaiseSignal + 1117959 29 libSystem.B.dylib 0x00007fff8462e8c1 _pthread_body + 24 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00007fff831a2d63 rbx: 0x0000000000000950 rcx: 0x00007fff706dbf80 rdx: 0x0000000100145350 rdi: 0xe8e8e8ffe8e8e8ff rsi: 0x00000001008a4ea8 rbp: 0x00007fff5fbfbe20 rsp: 0x00007fff5fbfbe10 r8: 0x00007fff704cf670 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x00000000e8e8e8ff r12: 0x0000000000000001 r13: 0x0000000100bca200 r14: 0x000000014579d000 r15: 0x00000000000000b2 rip: 0x00007fff831a2d72 rfl: 0x0000000000010286 cr2: 0x000000014579d000 Binary Images: 0x100000000 - 0x100003fff +org.eclipse.eclipse 3.4 (3.4) /Users/ssq/Downloads/eclipse64/Eclipse.app/Contents/MacOS/eclipse 0x100043000 - 0x10004afff +eclipse_1201.so ??? (???) /Users/ssq/Downloads/eclipse64/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.0.0.N20090108-2000/eclipse_1201.so 0x10006b000 - 0x100073ffd com.apple.JavaVM 12.2.0 (12.2.0) <2b178e8d4bbcc0aa427c2f3f71bb2fcb> /System/Library/Frameworks/JavaVM.framework/JavaVM 0x10008b000 - 0x100093fe0 libverify.dylib ??? (???) <54e57def88453f982c623cdc5e505e02> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x100099000 - 0x1000a2ffb JavaNativeFoundation ??? (???) <68ca6409dc49542301edda1e0744ac69> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation 0x1000ae000 - 0x1000ccfef libjava.jnilib ??? (???) <76765136813f7bce371f483f8dfcb8e4> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jnilib 0x1000db000 - 0x1000e8ffb libzip.jnilib ??? (???) <86d6bc6dfce9aff8b8825ee62215b27d> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jnilib 0x1119c5000 - 0x111f88fff libjvm.dylib ??? (???) <ef43bc5a2b01003c238451f1d5b37763> /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Libraries/libjvm.dylib 0x138543000 - 0x138547fff libnio.jnilib ??? (???) <40e70503c35c70b8ee8e272b5a8f53a8> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnio.jnilib 0x1385e4000 - 0x1385efffb libnet.jnilib ??? (???) <feee83d5416bb0bf8e6bcab31286d2af> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnet.jnilib 0x138f66000 - 0x139143fef com.apple.RawCamera.bundle 2.0.11 (410) <e1597c770c4dd74ca0c7df758fb6ccfc> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x13ae55000 - 0x13ae8efff +libswt-cocoa-3526.jnilib ??? (???) /Users/ssq/Downloads/eclipse64/configuration/org.eclipse.osgi/bundles/138/1/.cp/libswt-cocoa-3526.jnilib 0x13aef1000 - 0x13af06fff +libswt-pi-cocoa-3526.jnilib ??? (???) /Users/ssq/Downloads/eclipse64/configuration/org.eclipse.osgi/bundles/138/1/.cp/libswt-pi-cocoa-3526.jnilib 0x13d939000 - 0x13d93afff ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x143173000 - 0x14318afef libJapaneseConverter.dylib ??? (???) <64cca6bb4650a269f49a8427507e4963> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib 0x1440b4000 - 0x144189ffd com.apple.WebKit 5525.27 (5525.27.1) <5d1c9d09cca229accf566e29d1d8b5d2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x144254000 - 0x14433dfe7 com.apple.JavaScriptCore 5525.26 (5525.26.2) <cccd2372718bc4cdb72686db68e9fa30> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x1443b3000 - 0x144b93fff com.apple.WebCore 5525.26 (5525.26.6) <5cca5872a15476573df5d2a7b7bfc022> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff5fc00000 - 0x7fff5fc2e643 dyld 97.1 (???) <b40847f1ce1ba2ed13837aeccbf19284> /usr/lib/dyld 0x7fff80003000 - 0x7fff803bbfff libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff803bc000 - 0x7fff806a3feb com.apple.HIToolbox 1.5.4 (???) <ab04555ca43169811a68efdc6dc02e6b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff806a4000 - 0x7fff807e7ffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff807e8000 - 0x7fff807e8ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff807e9000 - 0x7fff80871fe7 libsqlite3.0.dylib ??? (???) <3c7ab3523b816dbd3e039ee7e6e2c580> /usr/lib/libsqlite3.0.dylib 0x7fff80872000 - 0x7fff808b2fef com.apple.framework.IOKit 1.5.1 (???) <17e6707127a60c5e2d7a9bd2b7bf2db0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff808b3000 - 0x7fff808b9fff com.apple.DiskArbitration 2.2.1 (2.2.1) <e75fe224700767869227cc903bef8ed9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff808ba000 - 0x7fff80941fef com.apple.audio.CoreAudio 3.1.1 (3.1.1) <9c1714647fd7515c900362ad2ac76874> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff80942000 - 0x7fff80943ff3 com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff80944000 - 0x7fff80a47feb com.apple.CoreData 100.1 (186) <074abc7f43f81f7885e4d0674a8be4bc> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff80a48000 - 0x7fff80a9dfe3 com.apple.HIServices 1.7.0 (???) <6bef766448d67adb91901b432629ea0f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff80a9e000 - 0x7fff813c6fff com.apple.AppKit 6.5.6 (949.43) <a411fba218896f0fc2ed390efa87cd6a> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff813c7000 - 0x7fff81467fe3 com.apple.ApplicationServices.ATS 3.4 (???) <47cf09bf78935889f17f1b6b09badf0d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff81468000 - 0x7fff81468ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer 0x7fff81469000 - 0x7fff815a0fff com.apple.CoreFoundation 6.5.5 (476.17) <51930d43c7c2d8fb24148cbfc05bba0f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff815a1000 - 0x7fff8165ffff edu.mit.Kerberos 6.0.12 (6.0.12) <c151ff3077083648f3cd3e727c1ac7aa> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff81660000 - 0x7fff81663fff com.apple.securityhi 3.0 (30817) <00ddd6e60692b62b7649573eab8aef5a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff81664000 - 0x7fff8167aff9 com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8167b000 - 0x7fff8173ffe2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff81740000 - 0x7fff81744fff libGIF.dylib ??? (???) <66436b84211fe0e723051eab15af0aca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff81745000 - 0x7fff81751ff1 libgcc_s.1.dylib ??? (???) <23fa31a628c1ea8a62ac529fa333b6e1> /usr/lib/libgcc_s.1.dylib 0x7fff81752000 - 0x7fff817a2fe7 com.apple.Metadata 10.5.2 (398.25) <f6820e35383510a4998973b43b529bf5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff817a3000 - 0x7fff81834fff com.apple.SearchKit 1.2.1 (1.2.1) <e2a25e04f281fe8ff7088a08a549020f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff81835000 - 0x7fff81835ff8 com.apple.Cocoa 6.5 (???) <8c59f679ffbd9178134df1d83dedde28> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff81836000 - 0x7fff81d56fc6 libGLProgrammability.dylib ??? (???) <c0b0ce17b94ac62ab466731a54d5856b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff81d57000 - 0x7fff81d79fff libJPEG.dylib ??? (???) <4257ab268996bbeb93b47946df181cdc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff81d7a000 - 0x7fff81e41fec com.apple.CFNetwork 422.11 (422.11) <570ca46de3b907cb1c8e33fc62f562b4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff81e42000 - 0x7fff81e56ff7 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff81e57000 - 0x7fff81e61fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <2399374b096b284345daba82e2cb833d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognit
|
2009-01-09 16:30:54
| 1,231,540,000 |
resolved fixed
|
76ab2bf
| 1,231,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
|
SWT
|
1,259 | 182,914 |
Bug 182914 Text with SWT.SEARCH doesn't work with east asian language pack
| null |
2007-04-18 06:20:31
| 1,176,890,000 |
resolved fixed
|
6fcbcc5
| 1,231,530,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,260 | 237,517 |
Bug 237517 GTK combo doesn't fire selection during arrow up/down
|
build RC4 3.4 gtk 2.8.20 and 2.12.1 run the snippet, and use arrow down and up to change the selection no events are fired.
|
2008-06-17 15:19:17
| 1,213,730,000 |
resolved fixed
|
a3933d2
| 1,231,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.