Committing in .
Updates for OpenVMS support Modified Files: wxWindows/src/motif/descrip.mms wxWindows/src/unix/utilsx11.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -74,6 +74,7 @@ OBJECTS = \
|
|||||||
statbox.obj,\
|
statbox.obj,\
|
||||||
stattext.obj,\
|
stattext.obj,\
|
||||||
textctrl.obj,\
|
textctrl.obj,\
|
||||||
|
toplevel.obj,\
|
||||||
timer.obj,\
|
timer.obj,\
|
||||||
toolbar.obj,\
|
toolbar.obj,\
|
||||||
utils.obj,\
|
utils.obj,\
|
||||||
@@ -129,6 +130,7 @@ SOURCES = \
|
|||||||
statbox.cpp,\
|
statbox.cpp,\
|
||||||
stattext.cpp,\
|
stattext.cpp,\
|
||||||
textctrl.cpp,\
|
textctrl.cpp,\
|
||||||
|
toplevel.cpp,\
|
||||||
timer.cpp,\
|
timer.cpp,\
|
||||||
toolbar.cpp,\
|
toolbar.cpp,\
|
||||||
utils.cpp,\
|
utils.cpp,\
|
||||||
@@ -193,6 +195,7 @@ statbmp.obj : statbmp.cpp
|
|||||||
statbox.obj : statbox.cpp
|
statbox.obj : statbox.cpp
|
||||||
stattext.obj : stattext.cpp
|
stattext.obj : stattext.cpp
|
||||||
textctrl.obj : textctrl.cpp
|
textctrl.obj : textctrl.cpp
|
||||||
|
toplevel.obj : toplevel.cpp
|
||||||
timer.obj : timer.cpp
|
timer.obj : timer.cpp
|
||||||
toolbar.obj : toolbar.cpp
|
toolbar.obj : toolbar.cpp
|
||||||
utils.obj : utils.cpp
|
utils.obj : utils.cpp
|
||||||
|
@@ -276,7 +276,11 @@ static bool wxQueryWMspecSupport(Display *display, Window rootWnd, Atom feature)
|
|||||||
|
|
||||||
// Is the WM ICCCM supporting?
|
// Is the WM ICCCM supporting?
|
||||||
XGetWindowProperty(display, rootWnd,
|
XGetWindowProperty(display, rootWnd,
|
||||||
|
#ifdef __VMS
|
||||||
|
_NET_SUPPORTING_WM_CHECK, 0, LONG_MAX,
|
||||||
|
#else
|
||||||
_NET_SUPPORTING_WM_CHECK, 0, UINT_MAX,
|
_NET_SUPPORTING_WM_CHECK, 0, UINT_MAX,
|
||||||
|
#endif
|
||||||
False, XA_WINDOW, &type, &format, &nwins,
|
False, XA_WINDOW, &type, &format, &nwins,
|
||||||
&after, (unsigned char **)&wins);
|
&after, (unsigned char **)&wins);
|
||||||
if ( type != XA_WINDOW || nwins <= 0 || wins[0] == None )
|
if ( type != XA_WINDOW || nwins <= 0 || wins[0] == None )
|
||||||
@@ -285,7 +289,11 @@ static bool wxQueryWMspecSupport(Display *display, Window rootWnd, Atom feature)
|
|||||||
|
|
||||||
// Query for supported features:
|
// Query for supported features:
|
||||||
XGetWindowProperty(display, rootWnd,
|
XGetWindowProperty(display, rootWnd,
|
||||||
_NET_SUPPORTED, 0, UINT_MAX,
|
#ifdef __VMS
|
||||||
|
_NET_SUPPORTED, 0, LONG_MAX,
|
||||||
|
#else
|
||||||
|
_NET_SUPPORTED, 0, UINT_MAX,
|
||||||
|
#endif
|
||||||
False, XA_ATOM, &type, &format, &natoms,
|
False, XA_ATOM, &type, &format, &natoms,
|
||||||
&after, (unsigned char **)&atoms);
|
&after, (unsigned char **)&atoms);
|
||||||
if ( type != XA_ATOM || atoms == NULL )
|
if ( type != XA_ATOM || atoms == NULL )
|
||||||
|
Reference in New Issue
Block a user