--- a/jdk/src/solaris/classes/sun/awt/X11/XEmbedChildProxyPeer.java Mon Apr 07 14:53:51 2008 +0400
+++ b/jdk/src/solaris/classes/sun/awt/X11/XEmbedChildProxyPeer.java Mon Apr 07 16:52:51 2008 +0400
@@ -1,5 +1,5 @@
/*
- * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -53,7 +53,7 @@
try {
XToolkit.addEventDispatcher(handle, this);
XlibWrapper.XSelectInput(XToolkit.getDisplay(), handle,
- XlibWrapper.StructureNotifyMask | XlibWrapper.PropertyChangeMask);
+ XConstants.StructureNotifyMask | XConstants.PropertyChangeMask);
}
finally {
XToolkit.awtUnlock();
@@ -341,10 +341,10 @@
public void dispatchEvent(XEvent xev) {
int type = xev.get_type();
switch (type) {
- case XlibWrapper.PropertyNotify:
+ case XConstants.PropertyNotify:
handlePropertyNotify(xev);
break;
- case XlibWrapper.ConfigureNotify:
+ case XConstants.ConfigureNotify:
handleConfigureNotify(xev);
break;
}