summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2006-03-16 21:15:00 +0000
committerSilenio Quarti <silenio>2006-03-16 21:15:00 +0000
commit5b3222dc7d8819205916490534db5df993f747fc (patch)
tree81387b454ca2731bb735c2d6ecf861258e429b6a
parente9b2c7ca6d5c8b50d4092f6d6556d9deb2f156bf (diff)
downloadeclipse.platform.swt-5b3222dc7d8819205916490534db5df993f747fc.tar.gz
eclipse.platform.swt-5b3222dc7d8819205916490534db5df993f747fc.tar.xz
eclipse.platform.swt-5b3222dc7d8819205916490534db5df993f747fc.zip
131727 - SWT_AWT frames in task bar
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
index c9f0dc5fc9..1649e19af1 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
@@ -646,6 +646,7 @@ void releaseWidget () {
if (hwndChild != 0) {
int threadId = OS.GetWindowThreadProcessId (hwndChild, null);
if (threadId != OS.GetCurrentThreadId ()) {
+ OS.ShowWindow (hwndChild, OS.SW_HIDE);
OS.SetParent (hwndChild, 0);
}
}