Committing in .
wxMOTIF updates for OpenVMS Modified Files: wxWindows/setup.h_vms wxWindows/src/generic/descrip.mms wxWindows/src/motif/descrip.mms wxWindows/src/motif/glcanvas.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
335c9e32fe
commit
dae752d4b1
@ -213,7 +213,11 @@
|
||||
/*
|
||||
* Use wxPopupWindow (useful in wxUniv only for now)
|
||||
*/
|
||||
#ifdef __WXMOTIF__
|
||||
#define wxUSE_POPUPWIN 0
|
||||
#else
|
||||
#define wxUSE_POPUPWIN 1
|
||||
#endif
|
||||
|
||||
/*
|
||||
Use wxTipWindow
|
||||
@ -666,7 +670,11 @@
|
||||
/*
|
||||
* Use tooltips
|
||||
*/
|
||||
#ifdef __WXMOTIF__
|
||||
#define wxUSE_TOOLTIPS 0
|
||||
#else
|
||||
#define wxUSE_TOOLTIPS 1
|
||||
#endif
|
||||
/*
|
||||
* Use dnd
|
||||
*/
|
||||
|
@ -31,7 +31,6 @@ CC_DEFINE =
|
||||
cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
|
||||
|
||||
OBJECTS = \
|
||||
accel.obj,\
|
||||
busyinfo.obj,\
|
||||
calctrl.obj,\
|
||||
caret.obj,\
|
||||
@ -119,10 +118,9 @@ SOURCES = \
|
||||
wizard.cpp
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
OBJECTS0=,statline.obj,\
|
||||
notebook.obj
|
||||
OBJECTS0=,statline.obj,notebook.obj,scrlwing.obj,spinctlg.obj
|
||||
.else
|
||||
OBJECTS0=,filedlgg.obj,paletteg.obj
|
||||
OBJECTS0=,accel.obj,filedlgg.obj,paletteg.obj
|
||||
.endif
|
||||
|
||||
all : $(SOURCES)
|
||||
@ -168,6 +166,8 @@ progdlgg.obj : progdlgg.cpp
|
||||
prop.obj : prop.cpp
|
||||
propform.obj : propform.cpp
|
||||
proplist.obj : proplist.cpp
|
||||
scrlwing.obj : scrlwing.cpp
|
||||
spinctlg.obj : spinctlg.cpp
|
||||
sashwin.obj : sashwin.cpp
|
||||
splitter.obj : splitter.cpp
|
||||
statline.obj : statline.cpp
|
||||
|
@ -51,6 +51,7 @@ OBJECTS = \
|
||||
frame.obj,\
|
||||
gauge.obj,\
|
||||
gdiobj.obj,\
|
||||
glcanvas.obj,\
|
||||
gsockmot.obj,\
|
||||
icon.obj,\
|
||||
listbox.obj,\
|
||||
@ -105,6 +106,7 @@ SOURCES = \
|
||||
frame.cpp,\
|
||||
gauge.cpp,\
|
||||
gdiobj.cpp,\
|
||||
glcanvas.cpp,\
|
||||
gsockmot.c,\
|
||||
icon.cpp,\
|
||||
listbox.cpp,\
|
||||
@ -168,6 +170,7 @@ font.obj : font.cpp
|
||||
frame.obj : frame.cpp
|
||||
gauge.obj : gauge.cpp
|
||||
gdiobj.obj : gdiobj.cpp
|
||||
glcanvas.obj : glcanvas.cpp
|
||||
gsockmot.obj : gsockmot.c
|
||||
icon.obj : icon.cpp
|
||||
listbox.obj : listbox.cpp
|
||||
|
@ -22,7 +22,13 @@
|
||||
#include "wx/utils.h"
|
||||
#include "wx/app.h"
|
||||
|
||||
#ifdef __VMS
|
||||
# pragma message disable nosimpint
|
||||
#endif
|
||||
#include <Xm/Xm.h>
|
||||
#ifdef __VMS
|
||||
# pragma message enable nosimpint
|
||||
#endif
|
||||
#include "wx/motif/private.h"
|
||||
|
||||
#ifdef OLD_MESA
|
||||
|
Loading…
Reference in New Issue
Block a user