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,061
253,056
Bug 253056 BlockSelection: add get/setBlockSelectionRectangle to StyledText
null
2008-11-01 10:13:14
1,225,550,000
resolved fixed
6ba132a
1,239,980,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
1,062
269,566
Bug 269566 mylyn - two tooltips in task list
null
2009-03-20 15:01:30
1,237,580,000
resolved fixed
8e2f1f4
1,239,910,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/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/Table.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/Widget.java
SWT
1,063
267,038
Bug 267038 [expressions] Edit watch expression action is never enabled
Using I20090224-0800, also happens when self-hosting with latest debug code. The Edit watch expression action, available in the context menu of the expressions view, is always disabled for me. I created multiple watch expressions and tried different ways of selecting (clicking, ctrl-a, ctrl-click).
2009-03-04 10:33:37
1,236,180,000
resolved fixed
572da10
1,239,830,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
SWT
1,064
272,259
Bug 272259 NPE in Display.runAsyncMessages(..) on quit
I20090414-0800 - set a breakpoint for NullPointerException - debug ControlExample - choose menu SWT > Quit SWT => NPE: Daemon Thread [Thread-0] (Suspended (exception NullPointerException)) Display.runAsyncMessages(boolean) line: 3283 Display.readAndDispatch() line: 2980 ControlExample.main(String[]) line: 210
2009-04-15 02:44:57
1,239,780,000
resolved fixed
b27a6c0
1,239,800,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,065
222,783
Bug 222783 [Table & Tree] Cocoa moveable columns do not work
Build ID: I20080207-1530 Steps To Reproduce: 1. Open Control example 2. Choose 'Tree' tab 3. Enable 'Multiple Columns' 4. Enable 'Header Visible' 5. Enable 'Header Images' Notice that header images do not appear. In addition, columns are moveable regardless even if "Moveable Columns" is deselected. Also, enabling 'Sort Indicator' has no effect.
2008-03-14 14:09:23
1,205,520,000
resolved fixed
5ccb784
1,239,750,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/TableColumn.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
SWT
1,066
271,904
Bug 271904 Checkbox takes too much space to the right
Build ID: I20090313-0100 Steps To Reproduce: 1. Create checkbox with colored background 2. Set layout data so that it doesn't take excess horizontal and vertical space 3. Open Interface builder and create cocoa application 4. Drag a checkbox from the library to application window 5. Delete checkbox text 6. Select checkbox and in the menu, select Layout -> Size to fit 7. Compare space taken by both checkboxes 8. Notice, that swt checkbox takes significantly more space to the right then native checkbox created in IB
2009-04-10 12:17:25
1,239,380,000
resolved fixed
3e4d4d1
1,239,660,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java
SWT
1,067
271,697
Bug 271697 Shell print(GC) not implemented
see summary.
2009-04-08 16:32:22
1,239,220,000
resolved fixed
d1d454e
1,239,660,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
1,068
188,320
Bug 188320 Possible Deadlock in JFace ModalContext
Build ID: M20070212-1330 The inner class ModalContextThread is not threadsafe and sometimes leads to a deadlock, at least under Linux + GTK. The problem is, that the block() method not always returns, when the run() method is finished. Have a look at these two methods: The block() method is called in the SWT thread and does basically this: while(continueEventDispatching) if (!display.readAndDispatch()) display.sleep(); The run method is called in an own thread and does (after the execution of the task) basically this: display.syncExec(new Runnable(){}); continueEventDispatching = false; display.asyncExec(null); The asyncExec(null) should wake up the SWT thread from display.sleep(). Unfortunately, this does not work, when the asyncExec() is executed exactly between the display.readAndDispatch() and the display.sleep(). This can happen, because there is no synchronisation. In this case the display.sleep() does not return immediately, but waits for the next event, which may come never. You can see the same problem in the following code snippet: public static void main(String[] args) throws InterruptedException { final Shell shell = new Shell(); while(true){ if (! shell.getDisplay().readAndDispatch()){ Thread async = new Thread(){ public void run() { shell.getDisplay().asyncExec(null); } }; async.start(); async.join(); System.out.println("sleep"); shell.getDisplay().sleep(); System.out.println("wakeup"); } } } A fix for this problem would be to call display.asyncExec(new Runnable(){ public void run(){ } }); In contrast to using the null argument, this Runnable generates a real event instead of just waking up the SWT thread. So the SWT thread does not really begin to sleep.
2007-05-22 10:17:23
1,179,840,000
resolved fixed
e3fca86
1,239,640,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java
SWT
1,069
253,229
Bug 253229 Implement SWT.Settings for Display
null
2008-11-03 10:57:48
1,225,730,000
resolved fixed
df12063
1,239,300,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,070
267,507
Bug 267507 Progress bar in progress view shines through fast view
null
2009-03-07 12:33:48
1,236,450,000
resolved fixed
9cde3dc
1,239,300,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/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/ProgressBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
1,071
271,634
Bug 271634 [cocoa] Display loads hardcoded english nib file
null
2009-04-08 10:32:38
1,239,200,000
resolved fixed
ed5d011
1,239,220,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSBundle.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,072
259,687
Bug 259687 [Browser] Javascript executes asynchronously with xulrunner 1.9
null
2008-12-25 18:47:46
1,230,250,000
resolved fixed
2177973
1,239,220,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/cocoa/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrincipal.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIScriptSecurityManager_1_9.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIScriptSecurityManager_1_9_1.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsISerializable.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIXPCSecurityManager.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java
SWT
1,073
270,954
Bug 270954 Eclipse crashes when trying to print code with a scale different from 100%.
Build ID: I20090313-0100 Steps To Reproduce: 1. Open a java source file. 2. Select print. 3. In the print dialog that comes up, enter 80 in the scale field. 4. Click print. Results: Eclipse crashes. Reproducible: Always. More information: Probably Mac specific. The print dialog that comes up looks more like a 10.4 (Tiger) dialog than a 10.5 (Leopard) dialog. Maybe eclipse calls the wrong api function? Another curious side remark: When the dialog comes up, the scale is set to '100 %' (with an added %-sign). As soon as you try to enter anything, an input validator only lets you enter numbers without the %-sign. I cannot tell if this is related or a separate cosmetic issue. OS X 10.5.6
2009-04-02 08:23:10
1,238,670,000
resolved fixed
0ecbcf1
1,239,130,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSLayoutManager.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/TextLayout.java
SWT
1,074
271,336
Bug 271336 Test failures on Mac OS
we had a bunch of test failures (NPEs) in the test suite that are suspicious. NPE stack trace: Failed to execute runnable (java.lang.NullPointerException) org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3864) at org.eclipse.swt.SWT.error(SWT.java:3779) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:194) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3767) at org.eclipse.jdt.debug.tests.launching.RefreshTabTests.setSelection(RefreshTabTests.java:56) at org.eclipse.jdt.debug.tests.launching.RefreshTabTests.testSelectedResource(RefreshTabTests.java:66) at org.eclipse.jdt.debug.tests.AbstractDebugTest.runBare(AbstractDebugTest.java:1728) at org.eclipse.jdt.debug.tests.DebugSuite$1.run(DebugSuite.java:54) at java.lang.Thread.run(Thread.java:613) Caused by: java.lang.NullPointerException at org.eclipse.jdt.debug.tests.launching.RefreshTabTests$1.run(RefreshTabTests.java:49) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3255) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2958) at org.eclipse.jdt.debug.tests.DebugSuite.run(DebugSuite.java:68) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3255) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2958) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2393) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2357) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2209) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) 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.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:32) 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 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) at org.eclipse.equinox.launcher.Main.main(Main.java:1260) at org.eclipse.core.launcher.Main.main(Main.java:30)
2009-04-06 11:37:59
1,239,030,000
resolved fixed
023d314
1,239,120,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java
SWT
1,075
270,670
Bug 270670 CTabFolder should not cache borderColor
CTabFolder.borderColor is caching a system color. System colors should not be cached because they need to change when the user changes the system color, which could be at any time. The border color should be looked up every time it is needed for drawing, using getDisplay().getSystemColor().
2009-03-31 16:59:39
1,238,530,000
resolved fixed
bc038c9
1,238,960,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
SWT
1,076
271,179
Bug 271179 findProgram("a.null and void") returns Text Edit instead of null
Test case: Program prg = Program.findProgram("a.null and void"); On other platforms prg will be null. UI test suite relies on this behavior. On cocoa tests are failing because Text Edit is being opened up in front of the workbench and screwing up window activation.
2009-04-03 15:58:07
1,238,790,000
resolved fixed
02a2fd1
1,238,790,000
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
SWT
1,077
270,406
Bug 270406 CTabFolder.setBackground(Image) should be deleted
It looks like CTabFolder.setBackground(Image) was being considered for API in the Eclipse 3.0 time frame (at present, it is still private). Since that time, Control.setBackgroundImage(Image) was added in Eclipse 3.2, so CTabFolder.setBackground(Image) and bgImage should probably just be deleted because they are obsolete. Currently, the code looks to see if bgImage is null (of course, it will always be null because nobody can set it). Should we use Control.getBackgroundImage() instead? Steve, do you have the history on CTabFolder.setBackground(Image), and why it never became API?
2009-03-30 01:48:54
1,238,390,000
resolved fixed
96aa964
1,238,710,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
SWT
1,078
271,026
Bug 271026 "Quick Type Hierarchy" window briefly appears, then disappears.
Build N20090329-2000, but has been happening for a while. The Quick Type Hierarchy window flashes briefly and then disappears. Steps: 1. Check out an SWT tree. 2. Go to Widget.java 3. In the editor pane, click on something that you know has been overridden (windowDidMove, for example) 4. Hit cmd-T ===> The IDE works for a bit and then the type hierarchy window appears and then immediately hides. Expected: The type hierarchy window opens and stays open.
2009-04-02 14:30:49
1,238,700,000
resolved fixed
9d2a0dc
1,238,710,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
1,079
240,033
Bug 240033 [Viewers] 'Dialog refresh' has encountered a problem
null
2008-07-08 13:39:43
1,215,540,000
resolved fixed
87a1ac5
1,238,700,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/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
SWT
1,080
271,027
Bug 271027 Failure in JFace test suite related to virtual table
Apparently caused by a bug in the System.arraycopy call, line 2327 in Table.setItemCount(int)
2009-04-02 14:32:16
1,238,700,000
resolved fixed
904df56
1,238,700,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java
SWT
1,081
271,017
Bug 271017 Compiler warnings in N20090401-2000
1. WARNING in /JUnit Tests/org/eclipse/swt/tests/junit/SwtTestCase.java (at line 18) import org.eclipse.swt.widgets.*; The import org.eclipse.swt.widgets is never used
2009-04-02 13:13:52
1,238,690,000
resolved fixed
d48df07
1,238,700,000
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestCase.java
SWT
1,082
270,880
Bug 270880 Combo does not fire SWT.Modify immediately on select(int)
The following snippet prints an event on Win32 (and probably other platforms) but not on Cocoa: package snip; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; public class SnipComboModify { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout(1, false)); Combo combo = new Combo(shell, SWT.DROP_DOWN); combo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false)); combo.setItems(new String[] { "one", "two", "three" }); combo.addListener(SWT.Modify, new Listener(){ public void handleEvent(Event event) { System.out.println("received: " + event.type); } }); combo.select(1); display.dispose(); } } This is causing a failure in the data binding test suite.
2009-04-01 16:59:00
1,238,620,000
resolved fixed
08717ee
1,238,690,000
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/SWTComboBoxCell.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/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
1,083
270,544
Bug 270544 caret line highlight leaves screen artifacts
when multiple fonts are used in a StyledText, the caret line highlight doesn't always get cleared as the caret is moved to a new line. See the attached screenshot.
2009-03-30 21:36:08
1,238,460,000
resolved fixed
675d6bd
1,238,620,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java
SWT
1,084
270,861
Bug 270861 [Browser] don't use InitXPCOM2 to initialize xulrunner
null
2009-04-01 14:50:43
1,238,610,000
resolved fixed
910f9ed
1,238,610,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsDynamicFunctionLoad.java
SWT
1,085
270,663
Bug 270663 Combo.select() causes SelectionEvent
If I recall correctly programatic access to Combo should not cause any events -- this was an SWT design choice. My application enters an infinite loop on Cocoa where setting the selection causes a SelectionEvent, the event causes code in the listener to be invoked, the listener sets the Combo selection, ad infinitum. The same issue doesn't occur on Windows or Carbon.
2009-03-31 15:38:23
1,238,530,000
resolved fixed
39f5246
1,238,590,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java
SWT
1,086
270,654
Bug 270654 Scale does not fire selection events
Scale does not fire selection events when draging the scale cursor on Eclipse 3.5M6 Cocoa x86_64
2009-03-31 14:33:42
1,238,520,000
resolved fixed
a28d2c8
1,238,570,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java
SWT
1,087
185,204
Bug 185204 [CTabFolder] CTabItem.drawClose could preserve color
CTabItem.drawClose creates and disposes of a color. Since this happens on each paint, it would be better to cache. at org.eclipse.swt.custom.CTabItem.drawClose(CTabItem.java:197) at org.eclipse.swt.custom.CTabItem.drawSelected(CTabItem.java:423) at org.eclipse.swt.custom.CTabItem.onPaint(CTabItem.java:790)
2007-05-02 15:32:38
1,178,130,000
resolved fixed
83bf794
1,238,530,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
SWT
1,088
239,477
Bug 239477 Crash in ScriptStringOut
null
2008-07-03 12:15:41
1,215,100,000
resolved fixed
d8b150f
1,238,530,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
SWT
1,089
268,651
Bug 268651 [Browser] Make sure Eclipse works with xulrunner 1.9.1beta
Build ID: n/a Steps To Reproduce: Have xulrunner 1.9.1 installed on your Linux system and Eclipse stops to start correctly. More information: While searching for a solution for the issue that Eclipse doesn't start anymore on any of my Linux machines I found some informations that Eclipse crashes with xulrunner 1.9.1 because of mozilla's interface changes. I confirmed that this is also the reason on my system. The thing is that I still have also xulrunner 1.9.0 available on my system which works when I specify the location to it to eclipse's vm. Therefore why does Eclipse use the newest xulrunner instead of one which is known to work? The /etc/gre.d registrations are correct so it should be possible to filter on a specific version.
2009-03-14 19:10:49
1,237,070,000
resolved fixed
f51b769
1,238,520,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDocShell_1_9.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebBrowserStream.java
SWT
1,090
226,973
Bug 226973 On Linux, TableColumn#getWidth() sometimes incorrectly returns 0.
On Linux, TableColumn#getWidth() sometimes incorrectly returns 0. OS*: Linux paules 2.6.16.53-0.16-smp #1 SMP Tue Oct 2 16:57:49 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux *Note, running in 32-bit compatibility mode. However, symptoms are reproducible on 32-bit architectures. Eclipse SDK: Version: 3.4.0 Build id: I20080330-1350 JRE: java version "1.5.0" Java(TM) 2 Runtime Environment, Standard Edition (build pxi32dev-20070201 (SR4))IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223-20070201 (JIT enabled) J9VM - 20070131_11312_lHdSMR JIT - 20070109_1805ifx1_r8 GC - 200701_09) JCL - 20070126 Steps to reproduce: 1) Run the enclosed TableTest.java. 2) Click the Add button. 3) Select Tab2. 4) Select Tab1. 5) Click the Add button. 4) Note the following output: Column1 width: 100 Column1 width: 100 Column2 width: 100 Column1 width: 100 Column2 width: 100 Column1 width: 0 Column2 width: 0 Column3 width: 100 The first two columns return a zero width.
2008-04-14 13:04:19
1,208,190,000
closed fixed
44b3178
1,238,520,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
SWT
1,091
270,179
Bug 270179 MouseHover event always has empty stateMask
I20090325-1135 On cocoa, MouseHover events always have an empty stateMask (0x0). In the Java editor, different hovers should show up depending on the modifiers held down (configurable in preferences).
2009-03-26 16:44:38
1,238,100,000
resolved fixed
ce5283d
1,238,480,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
1,092
266,974
Bug 266974 Cocoa SWT / GLCanvas Event Handling Problems
GLCanvas does not deliver Events properly to listeners (e.g. MouseMove). See attached Snipped209 (with an added MouseMove Listener). Potential problem source: GLCanvas adds the NSOpenGLView instance to the parent's view, shoulnt it be the instances view itself? E.g, part of GLCanvas' constructor: // original: events not delivered glView.initWithFrame(parent.view.bounds(), pixelFormat, share != null ? share.glView : null); glView.setAutoresizingMask(OS.NSViewWidthSizable | OS.NSViewHeightSizable); parent.view.addSubview(glView); // working: however no auto resizing (why?) glView.initWithFrame(parent.view.bounds(), pixelFormat); glView.setAutoresizingMask(OS.NSViewWidthSizable | OS.NSViewHeightSizable); view.addSubview(glView);
2009-03-04 02:09:19
1,236,150,000
resolved fixed
c50f756
1,238,460,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/SWTOpenGLView.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
SWT
1,093
136,515
Bug 136515 [OpenGL] Support shared context for GLCanvas
null
2006-04-12 22:08:39
1,144,890,000
resolved fixed
c7326f8
1,238,440,000
bundles/org.eclipse.swt/Eclipse SWT OpenGL/carbon/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT OpenGL/common/org/eclipse/swt/opengl/GLData.java bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT OpenGL/motif/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSOpenGLContext.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSOpenGLView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
SWT
1,094
263,589
Bug 263589 TrayItem icon stays activated after invoking a pop-up menu item
When you have a TrayItem in Mac OS X that has a selection listener (icon in mac's menubar (tray) that reacts to left-click), the icon remains activated (blue) after some popup menu item that was invoked by left-clicking the TrayItem. Also, the icon remains activated when you invoke the popup menu and navigate away to desktop - popup menu hides, but TrayItem icon remains blue. Clicking the icon itself toggles the activation. Also, according to mac conventions, the activation effect (blue selection around the transparent icon) should disappear when you hover the mouse over next menubar item (i.e. the wireless network status...). This does not happen either. Meanwhile the right-click (menu detect listener) works fine, Some code and an example transparent icon is attached to test it. I've tried a million different ways before listing this bug, so please make sure you have a working solution before telling me that this code snippet is wrong.
2009-02-04 00:48:30
1,233,730,000
resolved wontfix
49c744b
1,238,440,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java
SWT
1,095
242,388
Bug 242388 [FastView] Unhandled event loop exception: NPE in ToolBarManager.update
After working for some time the Eclipse views get all mixed up and unresponsive ( I will attach a screenshot shortly). OpenSUSE 11.0/KDE 4.0.4 -- Error Details -- Date: Tue Jul 29 16:52:46 EEST 2008 Message: Unhandled event loop exception Severity: Error Plugin: org.eclipse.ui Session Data: eclipse.buildId=I20080617-2000 java.version=1.6.0_06 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 This is a continuation of log file /home/robert/workspace/.metadata/.bak_5.log Created Time: 2008-07-29 16:45:47.803 Exception Stack Trace: java.lang.NullPointerException at org.eclipse.jface.action.ToolBarManager.update(ToolBarManager.java:284) at org.eclipse.ui.internal.layout.TrimToolBarBase.update(TrimToolBarBase.java:265) at org.eclipse.ui.internal.FastViewManager.setTrimStackVisibility(FastViewManager.java:729) at org.eclipse.ui.internal.FastViewManager.activate(FastViewManager.java:665) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:967) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3568) at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:1032) at org.eclipse.ui.internal.WorkbenchPage.access$16(WorkbenchPage.java:1016) at org.eclipse.ui.internal.WorkbenchPage$18.run(WorkbenchPage.java:3667) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3665) at org.eclipse.ui.internal.PerspectiveBarContributionItem.select(PerspectiveBarContributionItem.java:124) at org.eclipse.ui.internal.PerspectiveBarManager$1.widgetSelected(PerspectiveBarManager.java:129) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1158) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3401) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3033) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
2008-07-29 10:06:35
1,217,340,000
resolved fixed
7ea0290
1,238,190,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java
SWT
1,096
268,181
Bug 268181 Screen cheese after switching compare provider
null
2009-03-11 14:21:35
1,236,800,000
resolved fixed
6db28f4
1,238,170,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewFormLayout.java
SWT
1,097
270,177
Bug 270177 SWT - DateTime component is broken on MAC cocoa 64 bits.
Build ID: M20090211-1700 Steps To Reproduce: import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class Snippet250 { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new RowLayout()); DateTime calendar = new DateTime(shell, SWT.DATE | SWT.DROP_DOWN); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } More information:
2009-03-26 16:26:08
1,238,100,000
resolved fixed
c564313
1,238,170,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.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/Widget.java
SWT
1,098
270,140
Bug 270140 MessageDialog spews warning on gtk 2.4.13
- a version check is probably needed before using gtk-alternative-button-order - the warning spew is: (SWT:4331): GLib-GObject-WARNING **: g_object_get_valist: object class `GtkSettings' has no property named `gtk-alternative-button-order' - the snippet: public static void main (String [] args) { final Display display = new Display (); final Shell shell = new Shell (display); MessageBox messageBox = new MessageBox (shell, SWT.OK | SWT.ICON_WARNING); messageBox.setText ("text"); messageBox.setMessage ("message"); messageBox.open (); display.dispose (); }
2009-03-26 12:04:48
1,238,080,000
resolved fixed
eb295d2
1,238,100,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
SWT
1,099
222,863
Bug 222863 No horizontal scrollbars in List
Build ID: M20071023-1652 Steps To Reproduce: 1. Open ControlExample 2. Open the Sash tab 3. Reside the vertical divider between the left and right lists far to the left side Notice that the left side list does not provide a horizontal scrollbar like it does on other platforms like Vista. More information:
2008-03-15 20:08:58
1,205,630,000
resolved fixed
35b5529
1,238,020,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java
SWT
1,100
268,724
Bug 268724 TRAVERSE_PAGE_NEXT events don't get through StyledText
I20090313-0100 On Cocoa, TRAVERSE_PAGE_NEXT/PREVIOUS events don't get through StyledText. This can e.g. be seen in the CustomControlExample: Ctrl+PageUp/PageDown traverses through all tabs, but when the focus is in the StyledText control, traversal does not works any more. With empty KeyDown, KeyUp, and Traverse listeners, I only get these events when I press Ctrl+PageDown: KeyDown [1]: KeyEvent{StyledText {} time=381924716 data=null character='\0' keyCode=262144 stateMask=0 doit=true} KeyUp [2]: KeyEvent{StyledText {} time=381926556 data=null character='\0' keyCode=16777222 stateMask=262144 doit=true} KeyUp [2]: KeyEvent{StyledText {} time=381927181 data=null character='\0' keyCode=262144 stateMask=262144 doit=true}
2009-03-16 05:23:00
1,237,200,000
resolved fixed
431655d
1,238,000,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/Shell.java
SWT
1,101
269,950
Bug 269950 Combo.setText does nothing in read-only mode
I20090317-1745. Combo.setText does nothing in read-only mode, but the Javdoc specifies it sets the text and does not mention any special case when in read-only mode, hence it is considered a bug to ignore setText(...) when in read-only mode. If this is a WONTFIX then at least the Javadoc should be clarified.
2009-03-25 04:20:04
1,237,970,000
resolved fixed
196dbae
1,237,990,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
1,102
269,606
Bug 269606 Wrong default new text line delimiter on Mac/Cocoa
I20090313-0100 Clean workspace Preferences/Workspace New text line delimiter is "Windows" instead of "Unix" Text file encoding is correct though.
2009-03-22 00:43:10
1,237,700,000
resolved fixed
455ddde
1,237,920,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java
SWT
1,103
267,895
Bug 267895 StyledText block selection: cut & paste should give original text
I20090310-0100. When having a block selection and doing cut & paste I would expect to get the original text no matter whether I do the selection from top-left to bottom-right or from bottom-right to top-left. I think the correct solution when cutting is to have a long caret that covers all selected lines.
2009-03-10 12:08:47
1,236,700,000
resolved fixed
3f57b70
1,237,840,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
1,104
268,745
Bug 268745 StyledText makes CTabFolder send same KeyDown event multiple times
null
2009-03-16 06:41:28
1,237,200,000
resolved fixed
a5b801b
1,237,830,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/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/Shell.java
SWT
1,105
269,599
Bug 269599 Compiler warnings in N20090320-2000
1. WARNING in /src/org/eclipse/swt/examples/texteditor/TextEditor.java (at line 760) baselineUpItem.setToolTipText(getResourceString(USE_BASELINE ? "IncreaseBaseline" : "IncreaseFont")); //$NON-NLS-1$ Dead code 2. WARNING in /src/org/eclipse/swt/examples/texteditor/TextEditor.java (at line 774) baselineDownItem.setToolTipText(getResourceString(USE_BASELINE ? "DecreaseBaseline" : "DecreaseFont")); //$NON-NLS-1$ Dead code
2009-03-21 17:24:14
1,237,670,000
resolved fixed
1ab8b52
1,237,830,000
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/TextEditor.java
SWT
1,106
267,468
Bug 267468 [SWT_AWT] Browser.print(GC) flickers
null
2009-03-06 18:47:27
1,236,380,000
resolved fixed
c250657
1,237,580,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java
SWT
1,107
213,185
Bug 213185 DropTargetEvent does not mention DND.DROP_DEFAULT
3.4 M4 The DropTargetEvent does not mention DND.DROP_DEFAULT. Its Javadoc ('detail' and 'operation' should mention that DND.DROP_DEFAULT is also a valid value.
2007-12-17 10:48:05
1,197,910,000
verified fixed
7fccff9
1,237,580,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEvent.java
SWT
1,108
269,533
Bug 269533 StyledText sometimes doesn't scroll far enough to show caret if moved via left-key to EOL
Build ID: M20080911-1700 Steps To Reproduce: 1. Fill a text file with 2 line of text, the first line should be twice as long as the clientarea width of the styledtext widget 2. Set the caret to the begining of the second line 3. Press left-cursor-key to move the caret to end of the first line expected behaviour: the caret should be visible actual behaviour: the widget scrolls to a location round about 2 pixel less than needed to see the caret More information: StyledText sometimes doesn't scroll far enough to show caret if moved via left-key from the beginning of a line to the end of the previous line. The problem only seam only occur on lines where the text is 1/3 longer than the clientwidth.
2009-03-20 11:07:50
1,237,560,000
resolved fixed
a1f29ae
1,237,580,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
1,109
269,506
Bug 269506 [Browser] JS->Java call can crash due to freeing of args
- use xulrunner 1.9.0.6 - run the TestExternal test - press the button in the third Browser - create a JS Function - press the button in the third Browser again - crash happens, one of the traces indicated that it was happening in Free -> removing all Frees from Mozilla.convertJStoJava() made the crash stop happening -> need to investigate whether something(s) should not be freed, or if memory management is not being done properly (eg.- should nsIMemory be used instead?)
2009-03-20 09:10:05
1,237,550,000
resolved fixed
9080b56
1,237,570,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/External.java
SWT
1,110
262,694
Bug 262694 [e3.5][mac] Add CC text field content assist doesn't work
On Eclipse 3.5 Cocoa content assist on the 'Add CC' field of the Bugzilla editor suggests all values despite text being typed into the text field. See attached screenshot.
2009-01-27 18:34:35
1,233,100,000
resolved fixed
75eb54e
1,237,560,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
1,111
269,305
Bug 269305 Path#addString baseline aligning
When adding a string to a Path at a given coordinate (with Path#addString()), normally, the text's baseline is aligned to the same position as if it was drawn at the given location. Under OS X Cocoa however, the text's baseline is aligned to the bottom of the text's bounding box (calculated with TextUtilities#getStringExtents()). This is strange behaviour, and makes it impossible to calculate the text's relative baseline in the Path or to align it to a given location.
2009-03-18 20:20:59
1,237,420,000
resolved fixed
50f1929
1,237,490,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSLayoutManager.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/Path.java
SWT
1,112
269,106
Bug 269106 SWT test suite does not call readAndDispatch
On cocoa this a big problem because we use readAndDispatch to release and create a new NSAutoreleasePool. Since this isn't happening, the first pool created gets used all the time, and the process eventually runs out of memory. Adding a call to Display.getDefault().readAndDispatch to our tearDown() allows our test suite to run to completion.
2009-03-17 18:35:58
1,237,330,000
resolved fixed
6938a0d
1,237,400,000
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestCase.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_SWT.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_SWTError.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_SWTException.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_ACC.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_Accessible.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleControlAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleControlEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleControlListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleTextAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleTextEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_accessibility_AccessibleTextListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_awt_SWT_AWT.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_Browser.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_CloseWindowListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_LocationAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_LocationListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_OpenWindowListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_ProgressAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_ProgressListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_StatusTextListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_TitleListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_VisibilityWindowAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_VisibilityWindowListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_AnimatedProgress.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_BidiSegmentEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_BidiSegmentListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_BusyIndicator.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CCombo.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CLabel.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CTabFolder.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CTabFolderAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CTabFolderEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CTabFolderListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_CTabItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ControlEditor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ExtendedModifyEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ExtendedModifyListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_LineBackgroundEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_LineBackgroundListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_LineStyleEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_LineStyleListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_PopupList.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ST.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_SashForm.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ScrolledComposite.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StackLayout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StyleRange.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StyledTextContent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TableCursor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TableEditor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TableTree.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TableTreeEditor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TableTreeItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TextChangeListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TextChangedEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TextChangingEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_TreeEditor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_VerifyKeyListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_ViewForm.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_ByteArrayTransfer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_Clipboard.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DND.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DragSource.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DragSourceAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DragSourceEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DragSourceListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DropTarget.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DropTargetAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DropTargetEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_DropTargetListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_FileTransfer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_RTFTransfer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_TextTransfer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_Transfer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_dnd_TransferData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ArmEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ArmListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ControlAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ControlEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ControlListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_DisposeEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_DisposeListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_FocusAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_FocusEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_FocusListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_HelpEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_HelpListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_KeyAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_KeyEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_KeyListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MenuAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MenuEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MenuListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ModifyEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ModifyListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseMoveListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseTrackAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_MouseTrackListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_PaintEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_PaintListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_SelectionAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_SelectionEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_SelectionListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ShellAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ShellEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_ShellListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TraverseEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TraverseListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TreeAdapter.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TreeEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TreeListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_TypedEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_VerifyEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_events_VerifyListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Color.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Cursor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Device.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_DeviceData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Drawable.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Font.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_FontData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_FontMetrics.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_GC.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_GCData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Image.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_ImageData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_ImageLoader.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_ImageLoaderEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_ImageLoaderListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_PaletteData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Point.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_RGB.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Region.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_FillLayout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_FormAttachment.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_FormData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_FormLayout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_GridData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_GridLayout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_RowData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_layout_RowLayout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OLE.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleAutomation.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleClientSite.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleControlSite.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleEvent.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleFrame.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleFunctionDescription.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OleParameterDescription.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_OlePropertyDescription.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_ole_win32_Variant.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_printing_PrintDialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_printing_Printer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_printing_PrinterData.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_program_Program.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Button.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Canvas.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Caret.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ColorDialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Combo.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Composite.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Control.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_CoolBar.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_CoolItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_DateTime.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Decorations.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Dialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_DirectoryDialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Event.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ExpandBar.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ExpandItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_FileDialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_FontDialog.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Group.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Label.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Layout.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_List.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Listener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Menu.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_MenuItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_MessageBox.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Monitor.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ProgressBar.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Sash.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ScrollBar.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scrollable.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Shell.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Slider.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Synchronizer.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TabFolder.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TabItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Table.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TableColumn.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TableItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Text.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ToolBar.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_ToolItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Tracker.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Tree.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TreeColumn.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TreeItem.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_TypedListener.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Widget.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/browser/Test_BrowserSuite.java
SWT
1,113
268,649
Bug 268649 image not shown in check and radio buttons
In Mylyn we use the following code to create a check button with an image. attachContextButton = toolkit.createButton(buttonComposite, Messages.TaskEditorActionPart_Attach_Context, SWT.CHECK); attachContextButton.setImage(CommonImages.getImage(TasksUiImages.CONTEXT_ATTACH)); Using Eclipse 3.4M6 I did not see the image.
2009-03-14 17:49:05
1,237,070,000
resolved fixed
89c0561
1,237,330,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java
SWT
1,114
269,031
Bug 269031 Exception in Image running junit tests
java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:3845) at org.eclipse.swt.SWT.error(SWT.java:3779) at org.eclipse.swt.SWT.error(SWT.java:3750) at org.eclipse.swt.graphics.ImageData.<init>(ImageData.java:440) at org.eclipse.swt.graphics.ImageData.<init>(ImageData.java:284) at org.eclipse.swt.graphics.Image.initNative(Image.java:1081) at org.eclipse.swt.graphics.Image.<init>(Image.java:524) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.test_ConstructorLorg_eclipse_swt_graphics_DeviceLjava_lang_String(Test_org_eclipse_swt_graphics_Image.java:420) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.runTest(Test_org_eclipse_swt_graphics_Image.java:646) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
2009-03-17 12:52:49
1,237,310,000
resolved fixed
2951695
1,237,310,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
SWT
1,115
268,853
Bug 268853 cannot programmatically collapse item whose parent is collapsed
N20090315-2000 I recently saw a blank item in the Package Explorer while retrieving content from CVS. This has been reported before but has never been reproducable. I still cannot get a reproducable case of it, but I suspect that it's caused by the problem below. - run the snippet below and expand the item down to its bottom descendent - note that if you collapse-then-expand the root item that the full hierarchy is expanded (correct) - collapse the root item, then click anywhere in the shell's open space, which does a setExpanded(false) on the first child item - now expand the root item -> note that the child item is still expanded, but should not be -> on other platforms this item is correctly collapsed I believe that the blank item I saw in the Package Explorer was a place-holder item that jface creates in order to make an expander appear beside a collapsed item whose actual child items are not yet known ( the item was not collapsed but should have been).
2009-03-16 14:43:03
1,237,230,000
resolved fixed
5b3f573
1,237,300,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,116
210,871
Bug 210871 Toolbar combo box multiple glitches
The combo menu item in the toolbar has a few problems. Run Control Example Go to Toolbar tab Click on 'Combo child' * There's what looks like a straight line to the right of the combo box e.g. [ V]- <- bit of line on right (closer inspection suggests that this is in fact the SWT.SEPARATOR overflowing; it's more visible in SWT.VERTICAL than SWT.HORIZONTAL) * The combination 'SWT.HORIZONTAL' and not 'SWT.RIGHT' causes a break-up of the 'text and image' menu choice * Using 'SWT.VERTICAL' with the image toolbar shows just the drop-down and a few pixels of choice width; I would expect it to expand * Using 'SWT.VERTICAL' causes the combo box to appear extended; in addition causing the warning below * A warning is printed: "2007-11-25 21:34:58.369 java[9610:10b] This application is trying to draw a very large combo box, 51 points tall. Vertically resizable combo boxes are not supported, but it happens that 10.4 and previous drew something that looked kind of sort of okay. The art in 10.5 does not break up in a way that supports that drawing. To avoid breaking existing apps, NSComboBox in 10.5 will use the 10.4 art for large combo boxes, but it won't exactly match the rest of the system. This application should be revised to stop using large combo boxes. This warning will appear once per app launch." PS Let me know if you want screenshots for the above
2007-11-25 16:45:08
1,196,030,000
resolved fixed
d93dc47
1,237,300,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
SWT
1,117
253,217
Bug 253217 Implement GC.copyArea()
null
2008-11-03 10:47:04
1,225,730,000
resolved fixed
d976ddb
1,237,240,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java
SWT
1,118
268,410
Bug 268410 Typing text in Spinner does not change value
Build id: I20090312-0100 Run ControlExample and go to Spinner tab. Use the mouse to click on the little arrows - the text increments and decrements as expected. (for example, up, up, up goes to 3, then down, down goes to 1). Leave the value at 1 and go to to next step... Select the text in the text field and type a very different number, say 27. Now use the mouse to go up or down... note that clicking down goes to 0 and up goes to 2. (should be 26 and 28). Another test case: - use the mouse to change the value to 5 - select the text and type 33 - type TAB - after the spinner loses focus, the value goes back to 5 Another test case: - use the mouse to change the value to 4 - select the text and type 22 - click on the Set/Get API button - Note that the value is 4, and not 22... but the Spinner still shows 22 (What is also interesting is that if you type in a new value and then *type* an up or down arrow key, then the typed value does become the real value, and the value is incremented or decremented correctly).
2009-03-12 15:05:16
1,236,880,000
resolved fixed
f294216
1,237,230,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java
SWT
1,119
268,787
Bug 268787 OS: uninitialized TCHAR sizeof value usage
TCHAR is widely used across SWT-win32 and if it is first touched (initialized) before touching OS class then an uninitialized (zero) value of TCHAR.sizeof would be used inside OS <clinit>() in the following code (thus preventing XP theme loading): int /*long*/ hHeap = OS.GetProcessHeap (); int byteCount = buffer.length () * TCHAR.sizeof; int /*long*/ pszText = OS.HeapAlloc (hHeap, HEAP_ZERO_MEMORY, byteCount); Possible solution: replace TCHAR.sizeof with its definition here: int /*long*/ hHeap = OS.GetProcessHeap (); int byteCount = buffer.length () * (IsUnicode ? 2 : 1); /* TCHAR.sizeof */ int /*long*/ pszText = OS.HeapAlloc (hHeap, HEAP_ZERO_MEMORY, byteCount); Steps to reproduce the bug: - temporarily define OS.IsWinCE field as literal (false value); - recompile OS.java and Display.java; - run org.eclipse.swt.examples.controlexample.ControlExample (on WinXP+); - go to "ProgressBar" tab (the ProgessBar will not be XP-like); or - go to "ToolTip" tab (the tool tip will not be shown even if "Visible" is checked).
2009-03-16 09:58:49
1,237,210,000
resolved fixed
63e161b
1,237,230,000
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
SWT
1,120
267,466
Bug 267466 [SWT_AWT] Browser.print(GC) should not use AWT component ancestor clip
null
2009-03-06 18:31:46
1,236,380,000
resolved fixed
6b21c61
1,237,220,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
SWT
1,121
268,732
Bug 268732 Typo in field name in carbon
"sizof" must be replaced with "sizeof" in: org\eclipse\swt\internal\carbon\ThemeButtonDrawInfo.java, org\eclipse\swt\internal\carbon\TXNBackground.java
2009-03-16 06:15:38
1,237,200,000
resolved fixed
c955abd
1,237,210,000
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/TXNBackground.java bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/ThemeButtonDrawInfo.java
SWT
1,122
268,613
Bug 268613 Should call NSOutlineView.initWithFrame instead of init()
NSOutline view reimplements init() and causes a small leak every time it's called. The work around is to call initWithFrame(new NSRect()) directly instead. The specific case I know of is in Display.getFont().
2009-03-13 17:34:34
1,236,980,000
resolved fixed
303e4f1
1,236,980,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
1,123
253,214
Bug 253214 Using 'SWT.YES | SWT.NO' on a MessageBox shows Yes/No instead of No/Yes
On a gtk+ system, I would expect the buttons to show up as No/Yes instead of Yes/No but the sample below shows otherwise. Actually, I lie, I haven't tested this snippet on a Linux system (but it _should_ work). You can also see the Yes/No dialog in action as follows 'Window > Preferences > Security > Secure Storage > Contents > Delete'. ------------- import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.MessageBox; import org.eclipse.swt.widgets.Shell; public class Test { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.open(); MessageBox box = new MessageBox(shell, SWT.YES | SWT.NO); box.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } } ------------- private void createButtons() { if ((style & SWT.OK) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, "gtk-ok", true), SWT.OK); if ((style & SWT.CANCEL) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, "gtk-cancel", true), SWT.CANCEL); if ((style & SWT.YES) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, "gtk-yes", true), SWT.YES); if ((style & SWT.NO) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, "gtk-no", true), SWT.NO); if ((style & SWT.ABORT) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, SWT.getMessage("SWT_Abort"), true), SWT.ABORT); if ((style & SWT.RETRY) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, SWT.getMessage("SWT_Retry"), true), SWT.RETRY); if ((style & SWT.IGNORE) != 0) OS.gtk_dialog_add_button(handle, Converter.wcsToMbcs (null, SWT.getMessage("SWT_Ignore"), true), SWT.IGNORE); } ------------- I used hot code replace to create the SWT.NO button before the SWT.YES button and then it shows up as No/Yes as expected. I am not sure if this is the proper fix or not though.
2008-11-03 10:41:16
1,225,730,000
resolved fixed
45e7cb5
1,236,960,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java
SWT
1,124
268,543
Bug 268543 Test_org_eclipse_swt_graphics_Cursor leaks a Cursor
test_toString creates a Cursor, and does not dispose it.
2009-03-13 10:53:42
1,236,960,000
resolved fixed
2aa79da
1,236,960,000
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Cursor.java
SWT
1,125
267,129
Bug 267129 Content assist shells movable when clicking on scrollbar thumb
open content assist, click and drag at the very top of the scrollbars thumb which should be at the top of the scroll bar. The shell moves. I suspect that the mouse down is going through to the title bar of the shell (which we hid by making the content view big). The scroll bar should be handling the mouse down.
2009-03-04 18:57:41
1,236,210,000
resolved fixed
12d9393
1,236,950,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/Shell.java
SWT
1,126
236,630
Bug 236630 [OLE] Saving docx file will corrupt the file and produce OLE exception
I have created an RCP application. I can open microsoft office documents 2007 inside, with the docx extension. But if I modify the document and save it, the save operation corrupts the document somehow. Next time when I try to open it from the RCP application, I got an OLE exception "cannot create the in place editor". If I try to open the document directly with microsoft office, the error is "the file is corrupted". However if I chose to restore it, the file can be restored correctly. And now the weird thing is that the size of the document after the save from the RCP application is changing from 20ko to 99ko. It looks like some garbage is added in the docx document. I got exactly the same error if I try the same thing directly in the eclipse IDE. I have eclipse 3.3 and jre1.5.0_11. To duplicate: 1. Copy a docx file into a project directory. 2. Open this docx file inside Eclipse IDE. The file should be opened without any problem. 3. Modify the file, and save. 4. Close the file editor tab. 5. Open the file again, get following exception: Cannot create the in-place editor Reason: This is probably because there is no OLE editor registered against the type of file you were trying to open. Details: Failed to create Ole Client. result = -2147467260 6. Use Open With -> System Editor, get following message: The Office Open XML file test.docx cannot be opened because there are problems with the contents. Details: The file is corrupt and cannot be opened. This is a serious issue for our project as our application allows user to edit MS documents in-place. As more and more customers are using Office 2007, this is a show stopper for us. Thanks. Page
2008-06-11 10:01:38
1,213,190,000
resolved fixed
c3731b3
1,236,890,000
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java
SWT
1,127
268,217
Bug 268217 no KeyDown event for Help key
- run snippet25, press the Help key -> a KeyUp is shown but no KeyDown -> the cursor changes to a '?' - also, if you add a SWT.Help listener to the Shell, the Help callback will be received after clicking somewhere in the Shell (usually it accompanies the KeyDown)
2009-03-11 16:18:14
1,236,800,000
resolved fixed
bc233e2
1,236,880,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
1,128
267,174
Bug 267174 Device#loadFont() not implemented
As of 3.5.0.v3529a (and in HEAD), Device#loadFont()'s code is: public boolean loadFont (String path) { checkDevice(); if (path == null) SWT.error(SWT.ERROR_NULL_ARGUMENT); boolean result = false; char [] chars = new char [path.length ()]; path.getChars (0, chars.length, chars, 0); //TODO not done return result; }
2009-03-05 05:56:15
1,236,250,000
resolved fixed
7b108c7
1,236,880,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSString.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/Device.java
SWT
1,129
268,389
Bug 268389 Null pointer resizing fast view
I20090312-0100 Make the "Problems View" a Fast View. Select the "Error Log". Show the "Problems View". Try to resize it by grabbing the sash over the "Error Log" view. java.lang.NullPointerException at org.eclipse.swt.widgets.Sash.mouseDown(Sash.java:354) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4254) 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:1680) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:1723) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4318) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:3925) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3946) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:101) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2874) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2393) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2357) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2209) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) 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-03-12 13:10:10
1,236,880,000
resolved fixed
7734e33
1,236,880,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Sash.java
SWT
1,130
267,886
Bug 267886 cocoa: multiple command q opens multiples confirm dialogs
Eclipse SDK Version: 3.5.0 Build id: I20090310-0100 1. Open a editor 2. Edit the file 3. Hit command-q several times (note the shadow getting thicker) There, you have multiple dialogs to cancel...
2009-03-10 11:43:35
1,236,700,000
resolved fixed
aba6224
1,236,880,000
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,131
268,307
Bug 268307 Twistie in Tree does not give feedback on mouseDown with DragDetect listener
null
2009-03-12 05:19:52
1,236,850,000
resolved fixed
ca2b649
1,236,880,000
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,132
252,416
Bug 252416 SWT.HIDE_SELECTION doesn't work on Table
null
2008-10-28 12:20:59
1,225,210,000
resolved fixed
7e909dc
1,236,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,133
268,303
Bug 268303 Tree#getItem(Point) should not return item if point is on twistie
I20090311-1800, cocoa Tree#getItem(Point) should not return an item if the given point is on a twistie (the triangle to show/hide children). Clicking at that location would not select the item. A consequence of this can be seen in the Quick Outline (Ctrl+O) in the Java editor: When you try to expand/collapse an item with the mouse, the dialog is immediately closed and the editor jumps to the element. We call Tree#getItem(Point) in the mouseUp listener in org.eclipse.jdt.internal.ui.text.AbstractInformationControl.createDialogArea(Composite)
2009-03-12 05:11:17
1,236,850,000
resolved fixed
1a28b30
1,236,870,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
SWT
1,134
253,060
Bug 253060 Preference dialog flickers
Open the preferences dialog Expand General Click on Appearance The dialog will visibly redraw.
2008-11-01 10:25:00
1,225,550,000
resolved fixed
39e50bc
1,236,870,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
1,135
267,717
Bug 267717 New element not revealed
When a new element is added to a list, despite this element being highlighted it is not revealed. Steps to reproduce: - find a method with a lot of paremeters in your code - open the "change method signature" refactoring - hit the "Add" button to add a new parameter to the method.
2009-03-09 15:55:55
1,236,630,000
resolved fixed
2ee0ae7
1,236,870,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableIndexSet.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/Shell.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,136
266,203
Bug 266203 Vuze find icon flipped
null
2009-02-25 15:14:23
1,235,590,000
resolved fixed
3024704
1,236,870,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
1,137
266,335
Bug 266335 rssowl: controls are clipped
- select "EclipseZone: News", right-click > Properties - on the General tab note that the second-last line of controls is clipped along the bottom - interesting to note that this does not happen for these controls if a folder's properties are viewed instead, the only difference between the two cases is the presence of the "Link:" row of controls at the top
2009-02-26 11:21:24
1,235,670,000
resolved fixed
3c99698
1,236,870,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java
SWT
1,138
267,450
Bug 267450 Mylyn task list draws icons in wrong spot
null
2009-03-06 16:53:57
1,236,380,000
resolved fixed
2081e12
1,236,780,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,139
267,126
Bug 267126 SWTException evaluating JS with Sarfari
null
2009-03-04 17:12:50
1,236,200,000
resolved fixed
6fd9768
1,236,780,000
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Browser/cocoa/org/eclipse/swt/browser/Safari.java
SWT
1,140
267,841
Bug 267841 MessageBox#open() always returns SWT.CANCEL
HEAD MessageBox#open() always returns SWT.CANCEL, see e.g. ControlExample.
2009-03-10 09:23:11
1,236,690,000
resolved fixed
19ff04d
1,236,720,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java
SWT
1,141
267,752
Bug 267752 Not calling init when creating SWTSearchField
In Text.java we are now creating an instance of SWTSearchField with class_createInstance. However, nothing calls init(), which leads to crashes in some circumstances.
2009-03-09 19:29:38
1,236,640,000
resolved fixed
3a18b9e
1,236,710,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/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
SWT
1,142
267,103
Bug 267103 Text Fields too big
null
2009-03-04 15:55:54
1,236,200,000
resolved fixed
cd48a7c
1,236,630,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/NSSearchFieldCell.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/Text.java
SWT
1,143
265,947
Bug 265947 [Browser] events not reusable outside org.eclipse.swt.browser pkg
null
2009-02-24 07:55:55
1,235,480,000
resolved fixed
7525d1f
1,236,630,000
bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java
SWT
1,144
267,516
Bug 267516 Tree tries to show multiple lines of text in items
null
2009-03-07 16:07:06
1,236,460,000
resolved fixed
3e43b6f
1,236,620,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,145
267,138
Bug 267138 CCombo popup doesn't scroll with CCombo
null
2009-03-04 20:12:29
1,236,220,000
resolved fixed
57ca071
1,236,380,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
SWT
1,146
267,104
Bug 267104 Canvas' region not applied to scroll bars
Canvas c = new Canvas(shell, SWT.V_SCROLL|SWT.H_SCROLL); c.setBackground(display.getSystemColor(SWT.COLOR_RED)); c.setBounds(0, 50, 100, 100); Region r3 = new Region(); r3.add(25, 0, 95, 95); c.setRegion(r3); Run the code above and notice that the scroll bars aren't clipped by the region, just the content area.
2009-03-04 15:58:35
1,236,200,000
resolved fixed
cf14ff1
1,236,370,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
SWT
1,147
267,196
Bug 267196 [mylyn] Open png attachment in browser causes editor tabs to disappear
null
2009-03-05 08:54:14
1,236,260,000
resolved fixed
38ec09f
1,236,360,000
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Browser/cocoa/org/eclipse/swt/browser/Safari.java
SWT
1,148
267,270
Bug 267270 NPE in Composite.nextValidKeyView
I was running the Text test cases to test some code I wrote and notice a failing test with the following exception. java.lang.NullPointerException at org.eclipse.swt.widgets.Composite.nextValidKeyView(Composite.java:844) at org.eclipse.swt.widgets.Display.windowDelegateProc(Display.java:4196) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSView.setHidden(NSView.java:257) at org.eclipse.swt.widgets.Shell.setWindowVisible(Shell.java:1530) at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1488) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Text.test_isVisible(Test_org_eclipse_swt_widgets_Text.java:899) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Control.runTest(Test_org_eclipse_swt_widgets_Control.java:824) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scrollable.runTest(Test_org_eclipse_swt_widgets_Scrollable.java:86) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Text.runTest(Test_org_eclipse_swt_widgets_Text.java:1452) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
2009-03-05 16:25:43
1,236,290,000
resolved fixed
ecc5ac7
1,236,300,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java
SWT
1,149
255,000
Bug 255000 [Browser] Provide API to handle authentication challenges properly
null
2008-11-12 04:32:29
1,226,480,000
resolved fixed
13c317a
1,236,280,000
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Browser/cocoa/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WebBrowser.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSURLAuthenticationChallenge.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSURLCredential.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSURLProtectionSpace.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/COM.java
SWT
1,150
254,498
Bug 254498 expander touches the image in treeitem
Version: 3.5.0 Build id: N20081102-2000 Again, quite cosmetic problem, in the package explorer in eclipse you can see that the expander almost touches in the image in the item. looks bad, can we add some spacing there ?
2008-11-06 14:51:08
1,226,000,000
resolved fixed
cf9134c
1,236,270,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/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTBrowserCell.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTImageTextCell.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/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/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
1,151
266,405
Bug 266405 Ctrl+Tab traversal broken with traverse listener
I20090224-0800 - Custom Control Example > Styled Text - add listener for Traverse - give focus to StyledText => Ctrl+Tab does not let focus out of the widget. I sometimes get out when I hold Ctrl and then wildly press and release the Shift and Tab keys. Similar problems in the Workbench when I try to get out of a Java editor (or invoke content assist and then try to give focus to the popup by pressing Tab).
2009-02-26 18:51:34
1,235,690,000
resolved fixed
78162d7
1,236,200,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/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/Widget.java
SWT
1,152
266,385
Bug 266385 Mylyn notifications don't close properly
When a Mylyn notifies you of bug activity it opes a shell in the bottom right corner of your screen. On carbon you can easily dismiss the thing by clicking the X, but that doesn't work on cocoa. Eventually it goes away on it's own.
2009-02-26 17:06:29
1,235,690,000
resolved fixed
75820f5
1,236,200,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
1,153
266,828
Bug 266828 getCharCount() in Combo throws NullPointerException
The internal method getCharCount in the Combo widget on Mac OS X throws nullpointer if 'NSString str' stays null, which gets its content from view.titleOfSelectedItem() because I believe no item was selected. We experience when call getSelection() on a fresh Combo Widget. getSelection calls getCharCount() and throws a nullpointer. getCharCount should check for null and return 0 in this case I believe.
2009-03-03 05:42:31
1,236,080,000
resolved fixed
c6b3b43
1,236,120,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java
SWT
1,154
266,330
Bug 266330 rssowl: read news item headers look the same as unread ones
The font of news item headers is supposed to change from bold to normal when clicked for the first time.
2009-02-26 11:10:41
1,235,660,000
resolved fixed
4628154
1,236,120,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java
SWT
1,155
266,549
Bug 266549 Scrollbar cheese and autoscroll behavior in debugger
Build id: N20090226-2000 Put a breakpoint in some code (has to be more than one page of code) and run under the debugger until you get to the breakpoint. Now grab the thumb in the current editor and try to drag-scroll UP a little to see some code that comes before the breakpoint. The scrollbar thumb jumps up, draws itself twice, and then begins rapidly auto-scrolling DOWN, which is the opposite direction to the one you began scrolling in. The auto-scrolling stops if you release the mouse, or if the auto-scrolling thumb gets to the mouse cursor's location. The only way to get the additional image of the scrollbar thumb to disappear is to grab the "real" thumb and drag over the cheesy thumb. :)
2009-02-27 14:56:19
1,235,760,000
resolved fixed
160c29b
1,236,110,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
1,156
261,548
Bug 261548 Weird focus
I20090113 A few times I have managed to get myself in a situation where eclipse was no longer the active application (the menu bar was indicating another app) but still my eclipse windows were on top and I could still click in the dialog that I had opened and the keystrokes were still routed to the application. Note though that the dialog was not fully functional. For example there was a tree and I could expand its node, but I could not select anything in it. Also it was hard for me to get it back to be the active application. No steps to reproduce this.
2009-01-19 13:23:11
1,232,390,000
resolved fixed
c8aed8c
1,236,100,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/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
1,157
266,883
Bug 266883 Lots of cheese in StyledText running ppc cocoa
I20090303-0800 Scrolling and typing in StyledText leaves unpainted gray areas.
2009-03-03 11:36:46
1,236,100,000
resolved fixed
b51994a
1,236,100,000
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,158
266,516
Bug 266516 NPE in generator tool
N20090226-2000 The trace is below. It happened for me twice but I can't reproduce it now. I think it happened when I was doing a search in the tool for NSHTTPCookie. java.lang.NullPointerException at org.eclipse.swt.tools.internal.MacGeneratorUI.selectNode(MacGeneratorUI.java:473) at org.eclipse.swt.tools.internal.MacGeneratorUI.searchFor(MacGeneratorUI.java:439) at org.eclipse.swt.tools.internal.MacGeneratorUI$1.handleEvent(MacGeneratorUI.java:193) 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.notifyListeners(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3173) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2846) 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-27 12:02:22
1,235,750,000
resolved fixed
7d5b1e1
1,236,050,000
bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java
SWT
1,159
266,625
Bug 266625 StyledText computeSize() answering slightly short width when SWT.WRAP, causes missing text
To see a manifestation of this in eclipse, which I think makes this important, hover over a compilation problem in a java editor like "display.getBounds2()", and in the hover you'll see: "The method getBounds2() is undefined for the type" (note that the final word "Display" is missing) swt-only steps: - run the CustomControlExample, go to the StyledText tab - remove "One Two Three" from the second line and its preceding CR/LF - now click the SWT.WRAP radio button and note that "dog." disappears (it has been wrapped to the next line) -> but it was able to fit in the identical width when the style wasn't SWT.WRAP
2009-03-01 15:58:36
1,235,940,000
resolved fixed
192ea36
1,236,030,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java
SWT
1,160
266,475
Bug 266475 Control#setBackgroundImage() does not work
null
2009-02-27 07:59:59
1,235,740,000
resolved fixed
452714f
1,236,030,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/DateTime.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/Spinner.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/Text.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
SWT