Some wxUniv compile fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10723 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -20,6 +20,14 @@
|
||||
// wxFrame
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#if defined(__WXMSW__)
|
||||
#define wxFrameNative wxFrameMSW
|
||||
#elif defined(__WXGTK__)
|
||||
#define wxFrameNative wxFrameGTK
|
||||
#elif defined(__WXMGL__)
|
||||
#define wxFrameNative wxFrameMGL
|
||||
#endif
|
||||
|
||||
class wxFrame : public wxFrameNative
|
||||
{
|
||||
public:
|
||||
|
@@ -38,7 +38,7 @@
|
||||
#define wxUSE_TIMER 1
|
||||
#define wxUSE_STOPWATCH 1
|
||||
#define wxUSE_TIMEDATE 0
|
||||
#define wxUSE_DATETIME 0
|
||||
#define wxUSE_DATETIME 1
|
||||
#define wxUSE_CONFIG 0
|
||||
#define wxUSE_CONFIG_NATIVE 0
|
||||
#define wxUSE_DIALUP_MANAGER 0
|
||||
@@ -66,6 +66,7 @@
|
||||
#define wxUSE_NOTEBOOK 1
|
||||
#define wxUSE_FONTMAP 0
|
||||
#define wxUSE_MIMETYPE 0
|
||||
#define wxUSE_IMAGE 1
|
||||
|
||||
#define wxUSE_CONTROLS 1
|
||||
#define wxUSE_POPUPWIN 1
|
||||
|
@@ -55,6 +55,14 @@ enum
|
||||
// wxWindow
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#if defined(__WXMSW__)
|
||||
#define wxWindowNative wxWindowMSW
|
||||
#elif defined(__WXGTK__)
|
||||
#define wxWindowNative wxWindowGTK
|
||||
#elif defined(__WXMGL__)
|
||||
#define wxWindowNative wxWindowMGL
|
||||
#endif
|
||||
|
||||
class WXDLLEXPORT wxWindow : public wxWindowNative
|
||||
{
|
||||
public:
|
||||
|
Reference in New Issue
Block a user