Committing in .

Modified Files:
 	wxWindows/src/generic/scrolwin.cpp wxWindows/src/motif/app.cpp
 	wxWindows/src/motif/bitmap.cpp
 	wxWindows/src/motif/bmpbuttn.cpp
 	wxWindows/src/motif/button.cpp
 	wxWindows/src/motif/checkbox.cpp
 	wxWindows/src/motif/choice.cpp wxWindows/src/motif/dialog.cpp
 	wxWindows/src/motif/filedlg.cpp wxWindows/src/motif/msgdlg.cpp
 	wxWindows/src/motif/radiobox.cpp
 	wxWindows/src/motif/radiobut.cpp
 	wxWindows/src/motif/statbox.cpp
 	wxWindows/src/motif/stattext.cpp
 	wxWindows/src/motif/textctrl.cpp wxWindows/src/motif/utils.cpp
 	wxWindows/src/motif/window.cpp

 More patches for VMS only

----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2000-08-25 08:00:04 +00:00
parent ea129d333a
commit bcd055ae10
17 changed files with 66 additions and 3 deletions

View File

@@ -21,6 +21,10 @@
#pragma implementation "scrolwin.h" #pragma implementation "scrolwin.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
// For compilers that support precompilation, includes "wx.h". // For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"

View File

@@ -13,6 +13,11 @@
#pragma implementation "app.h" #pragma implementation "app.h"
#endif #endif
#ifdef __VMS
#define XtParent XTPARENT
#define XtDisplay XTDISPLAY
#endif
#include "wx/frame.h" #include "wx/frame.h"
#include "wx/app.h" #include "wx/app.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "bitmap.h" #pragma implementation "bitmap.h"
#endif #endif
#ifdef __VMS
#define XtParent XTPARENT
#endif
#include "wx/setup.h" #include "wx/setup.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/palette.h" #include "wx/palette.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "bmpbuttn.h" #pragma implementation "bmpbuttn.h"
#endif #endif
#ifdef __VMS
#define XtScreen XTSCREEN
#endif
#include "wx/bmpbuttn.h" #include "wx/bmpbuttn.h"
#ifdef __VMS__ #ifdef __VMS__

View File

@@ -13,6 +13,10 @@
#pragma implementation "button.h" #pragma implementation "button.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/button.h" #include "wx/button.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/panel.h" #include "wx/panel.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "checkbox.h" #pragma implementation "checkbox.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/checkbox.h" #include "wx/checkbox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,7 +13,7 @@
#pragma implementation "choice.h" #pragma implementation "choice.h"
#endif #endif
#ifdef VMS #ifdef __VMS
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#define XtParent XTPARENT #define XtParent XTPARENT
#endif #endif

View File

@@ -13,6 +13,13 @@
#pragma implementation "dialog.h" #pragma implementation "dialog.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtWindow XTWINDOW
#define XtParent XTPARENT
#define XtScreen XTSCREEN
#endif
#include "wx/dialog.h" #include "wx/dialog.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/frame.h" #include "wx/frame.h"

View File

@@ -13,6 +13,12 @@
#pragma implementation "filedlg.h" #pragma implementation "filedlg.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#define XtParent XTPARENT
#define XtWindow XTWINDOW
#endif
#include "wx/defs.h" #include "wx/defs.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/dialog.h" #include "wx/dialog.h"

View File

@@ -22,6 +22,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#ifdef __VMS #ifdef __VMS
#define XtDisplay XTDISPLAY
#pragma message disable nosimpint #pragma message disable nosimpint
#include <wx/vms_x_fix.h> #include <wx/vms_x_fix.h>
#endif #endif

View File

@@ -13,6 +13,10 @@
#pragma implementation "radiobox.h" #pragma implementation "radiobox.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/radiobox.h" #include "wx/radiobox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "radiobut.h" #pragma implementation "radiobut.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/radiobut.h" #include "wx/radiobut.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "statbox.h" #pragma implementation "statbox.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/statbox.h" #include "wx/statbox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,10 @@
#pragma implementation "stattext.h" #pragma implementation "stattext.h"
#endif #endif
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/app.h" #include "wx/app.h"
#include "wx/stattext.h" #include "wx/stattext.h"

View File

@@ -21,6 +21,10 @@
#pragma implementation "textctrl.h" #pragma implementation "textctrl.h"
#endif #endif
#ifdef __VMS
#define XtParent XTPARENT
#endif
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fstream.h> #include <fstream.h>

View File

@@ -17,6 +17,10 @@
// headers // headers
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/setup.h" #include "wx/setup.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/app.h" #include "wx/app.h"

View File

@@ -23,8 +23,8 @@
#ifdef __VMS #ifdef __VMS
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#define XtWINDOW XTWINDOW #define XtWindow XTWINDOW
#define XtSreen XTSCREEN #define XtScreen XTSCREEN
#endif #endif
#include "wx/setup.h" #include "wx/setup.h"