added missing includes after wxUniv merge

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10901 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-07-08 19:03:21 +00:00
parent 6abe4b6540
commit f6045f99ba
14 changed files with 28 additions and 3 deletions

View File

@@ -17,6 +17,8 @@
#define XtScreen XTSCREEN #define XtScreen XTSCREEN
#endif #endif
#include "wx/defs.h"
#include "wx/bmpbuttn.h" #include "wx/bmpbuttn.h"
#ifdef __VMS__ #ifdef __VMS__

View File

@@ -17,6 +17,8 @@
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#endif #endif
#include "wx/defs.h"
#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

@@ -17,6 +17,8 @@
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#endif #endif
#include "wx/defs.h"
#include "wx/checkbox.h" #include "wx/checkbox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -17,6 +17,8 @@
#pragma implementation "checklst.h" #pragma implementation "checklst.h"
#endif #endif
#include "wx/defs.h"
#include "wx/checklst.h" #include "wx/checklst.h"
// ============================================================================ // ============================================================================

View File

@@ -18,7 +18,8 @@
#define XtParent XTPARENT #define XtParent XTPARENT
#endif #endif
// For compilers that support precompilation, includes "wx.h". #include "wx/defs.h"
#include "wx/choice.h" #include "wx/choice.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,8 @@
#pragma implementation "control.h" #pragma implementation "control.h"
#endif #endif
#include "wx/defs.h"
#include "wx/control.h" #include "wx/control.h"
#include "wx/panel.h" #include "wx/panel.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -22,6 +22,8 @@
// headers // headers
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#include "wx/defs.h"
#include "wx/menu.h" #include "wx/menu.h"
#include "wx/menuitem.h" #include "wx/menuitem.h"
#include "wx/log.h" #include "wx/log.h"

View File

@@ -21,6 +21,8 @@
// headers // headers
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#include "wx/defs.h"
#include "wx/menu.h" #include "wx/menu.h"
#include "wx/menuitem.h" #include "wx/menuitem.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -17,6 +17,8 @@
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#endif #endif
#include "wx/defs.h"
#include "wx/radiobox.h" #include "wx/radiobox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -17,6 +17,8 @@
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#endif #endif
#include "wx/defs.h"
#include "wx/radiobut.h" #include "wx/radiobut.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -13,6 +13,8 @@
#pragma implementation "scrolbar.h" #pragma implementation "scrolbar.h"
#endif #endif
#include "wx/defs.h"
#include "wx/scrolbar.h" #include "wx/scrolbar.h"
#ifdef __VMS__ #ifdef __VMS__

View File

@@ -13,6 +13,8 @@
#pragma implementation "statbmp.h" #pragma implementation "statbmp.h"
#endif #endif
#include "wx/defs.h"
#include "wx/statbmp.h" #include "wx/statbmp.h"
#ifdef __VMS__ #ifdef __VMS__

View File

@@ -17,6 +17,8 @@
#define XtDisplay XTDISPLAY #define XtDisplay XTDISPLAY
#endif #endif
#include "wx/defs.h"
#include "wx/statbox.h" #include "wx/statbox.h"
#include "wx/utils.h" #include "wx/utils.h"

View File

@@ -1669,8 +1669,8 @@ bool wxWindow::ProcessAccelerator(wxKeyEvent& event)
wxAcceleratorEntry* entry = & (entries[i]); wxAcceleratorEntry* entry = & (entries[i]);
if (entry->MatchesEvent(event)) if (entry->MatchesEvent(event))
{ {
// Bingo, we have a match. Now find a control that matches the entry // Bingo, we have a match. Now find a control that matches the
// command id. // entry command id.
// Need to go up to the top of the window hierarchy, since it might // Need to go up to the top of the window hierarchy, since it might
// be e.g. a menu item // be e.g. a menu item