Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2007-06-01 19:05:19 +0000
committerCarolyn MacLeod2007-06-01 19:05:19 +0000
commit3c4151b11989a0372cdffe5256380cc6a2d62c19 (patch)
treebbee484f267e86693d6bcd4e8b9826bdca8320b5
parent62e31383b7ef14178266820d931159a00f6c87e2 (diff)
downloadeclipse.platform.swt-3c4151b11989a0372cdffe5256380cc6a2d62c19.tar.gz
eclipse.platform.swt-3c4151b11989a0372cdffe5256380cc6a2d62c19.tar.xz
eclipse.platform.swt-3c4151b11989a0372cdffe5256380cc6a2d62c19.zip
v3345b for I20070601-1510v3345b
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java1
-rwxr-xr-xbundles/org.eclipse.swt/buildnotes_swt.html7
2 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
index a20ba709c1..336a9a9dbe 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
@@ -2503,7 +2503,6 @@ int /*long*/ gtk_focus_in_event (int /*long*/ widget, int /*long*/ event) {
int /*long*/ gtk_focus_out_event (int /*long*/ widget, int /*long*/ event) {
// widget could be disposed at this point
-// System.out.println("gtk_focus_out_event=" + handle);
if (handle != 0) {
if (hooks (SWT.KeyDown) || hooks (SWT.KeyUp)) {
int /*long*/ imHandle = imHandle ();
diff --git a/bundles/org.eclipse.swt/buildnotes_swt.html b/bundles/org.eclipse.swt/buildnotes_swt.html
index 6db4acf0d2..41f47c5338 100755
--- a/bundles/org.eclipse.swt/buildnotes_swt.html
+++ b/bundles/org.eclipse.swt/buildnotes_swt.html
@@ -11,6 +11,13 @@
Eclipse Platform Build Notes<br>
SWT</h1>
+<h2> SWT Build 3.3 045b - Friday June 1, 2007 </h2>
+<h3><a NAME="Problem reports fixed"></a>Problem reports fixed</h3>
+<blockquote>
+190262 - CCombo doesn't receive key-events
+<br>190480 - regression: FocusOut not fired for Texts in an SWT.APPLICATION_MODAL shell
+</blockquote>
+
<h2> SWT Build 3.3 045a - Thursday May 31, 2007 </h2>
<h3><a NAME="Problem reports fixed"></a>Problem reports fixed</h3>
<blockquote>

Back to the top