do VMS-specific X symbols redefinitions only once in wx/platform.h instead of doing it in individual files

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-01-01 20:38:33 +00:00
parent 95883d6c0f
commit 455f7c8205
27 changed files with 9 additions and 108 deletions

View File

@ -640,6 +640,15 @@
# define wxVMS_USE_STD
#endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#ifdef __WXMOTIF__
#define XtParent XTPARENT
#define XtScreen XTSCREEN
#define XtWindow XTWINDOW
#endif
#endif
/* Choose which method we will use for updating menus
* - in OnIdle, or when we receive a wxEVT_MENU_OPEN event.
* Presently, only Windows and GTK+ support wxEVT_MENU_OPEN.

View File

@ -25,10 +25,6 @@
#pragma hdrstop
#endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/scrolwin.h"
#ifndef WX_PRECOMP

View File

@ -12,11 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtParent XTPARENT
#define XtDisplay XTDISPLAY
#endif
#include "wx/app.h"
#ifndef WX_PRECOMP

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtScreen XTSCREEN
#endif
#include "wx/bmpbuttn.h"
#ifdef __VMS__

View File

@ -12,11 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtParent XTPARENT
#define XtDisplay XTDISPLAY
#endif
#include "wx/motif/bmpmotif.h"
#ifndef WX_PRECOMP

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/button.h"
#ifdef __VMS__

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/checkbox.h"
#ifndef WX_PRECOMP

View File

@ -14,11 +14,6 @@
#if wxUSE_CHOICE
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtParent XTPARENT
#endif
#include "wx/choice.h"
#ifndef WX_PRECOMP

View File

@ -12,13 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#define XtParent XTPARENT
#define XtScreen XTSCREEN
#endif
#include "wx/dialog.h"
#ifndef WX_PRECOMP

View File

@ -20,11 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtParent XTPARENT
#define XtDisplay XTDISPLAY
#endif
#ifndef WX_PRECOMP
#include "wx/event.h"
#include "wx/app.h"

View File

@ -12,12 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtParent XTPARENT
#define XtWindow XTWINDOW
#endif
#include "wx/filedlg.h"
#ifndef WX_PRECOMP

View File

@ -20,12 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#define XtScreen XTSCREEN
#endif
#include "wx/frame.h"
#ifndef WX_PRECOMP

View File

@ -24,11 +24,6 @@
#include "wx/arrstr.h"
#endif
#ifdef __VMS
#define XtParent XTPARENT
#define XtDisplay XTDISPLAY
#endif
#ifdef __VMS__
#pragma message disable nosimpint
#endif

View File

@ -12,11 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#endif
#include "wx/mdi.h"
#ifndef WX_PRECOMP

View File

@ -33,8 +33,6 @@
#ifdef __VMS__
#pragma message disable nosimpint
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#endif
#include <Xm/Label.h>
#include <Xm/LabelG.h>

View File

@ -21,7 +21,6 @@
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#pragma message disable nosimpint
#include "wx/vms_x_fix.h"
#endif

View File

@ -14,10 +14,6 @@
#if wxUSE_RADIOBOX
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/radiobox.h"
#ifndef WX_PRECOMP

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/radiobut.h"
#ifndef WX_PRECOMP

View File

@ -16,7 +16,6 @@
#ifdef __VMS__
#pragma message disable nosimpint
#define XtDisplay XTDISPLAY
#endif
#include <Xm/Xm.h>
#include <Xm/ScrollBar.h>

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/statbox.h"
#ifndef WX_PRECOMP

View File

@ -12,10 +12,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#if wxUSE_STATTEXT
#include "wx/stattext.h"

View File

@ -20,10 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtParent XTPARENT
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>

View File

@ -20,10 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/toolbar.h"
#ifndef WX_PRECOMP

View File

@ -29,10 +29,6 @@
#endif
#ifdef __VMS__
#define XtDisplay XTDISPLAY
#define XtParent XTPARENT
#define XtScreen XTSCREEN
#define XtWindow XTWINDOW
#pragma message disable nosimpint
#endif

View File

@ -20,10 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/utils.h"
#ifndef WX_PRECOMP

View File

@ -20,12 +20,6 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#define XtScreen XTSCREEN
#endif
#ifndef WX_PRECOMP
#include "wx/hash.h"
#include "wx/log.h"

View File

@ -14,7 +14,6 @@
#ifdef __VMS
#define XShapeQueryExtension XSHAPEQUERYEXTENSION
#define XtDisplay XTDISPLAY
#endif
#include "wx/x11/privx.h"