Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2003-10-09 16:32:13 +0000
committerGrant Gayed2003-10-09 16:32:13 +0000
commitf7119b2f6a4a42aac0a8e5a5108d55800436abf2 (patch)
tree210f37a05a402d841b7a90fd1fd8cc842bcbadc9
parenta959887f174f4144d37a926f5bfc7eb1053a5590 (diff)
downloadeclipse.platform.swt-eclipse_3_0_M4.tar.gz
eclipse.platform.swt-eclipse_3_0_M4.tar.xz
eclipse.platform.swt-eclipse_3_0_M4.zip
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java
index 69a0ec3af3..d79cadff13 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java
@@ -619,7 +619,7 @@ void createDisplay (DeviceData data) {
/* Create the AppContext */
int [] argc = new int [] {0};
int xtContext = OS.XtCreateApplicationContext ();
- if (OS.IsSunOS && XtContext == 0) XtContext = xtContext;
+ if ((OS.IsSunOS || OS.IsHPUX) && XtContext == 0) XtContext = xtContext;
OS.XtSetLanguageProc (xtContext, 0, 0);
xEvent = OS.XtMalloc (XEvent.sizeof);

Back to the top