include <wx/...> => include "wx/..."

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4301 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-11-02 15:50:22 +00:00
parent 1987af7e9f
commit 3096bd2fa7
58 changed files with 108 additions and 108 deletions

View File

@@ -54,7 +54,7 @@
#ifdef __WXMSW__ #ifdef __WXMSW__
#include <windows.h> #include <windows.h>
#include <wx/msw/private.h> #include "wx/msw/private.h"
#if !defined(__WIN32__) #if !defined(__WIN32__)
#include <print.h> #include <print.h>

View File

@@ -49,7 +49,7 @@
#if wxMAJOR_VERSION == 2 #if wxMAJOR_VERSION == 2
# ifndef WX_PRECOMP # ifndef WX_PRECOMP
# include <wx/wx.h> # include "wx/wx.h"
# endif //WX_PRECOMP # endif //WX_PRECOMP
#endif #endif

View File

@@ -17,14 +17,14 @@
#pragma implementation "dynarray.h" #pragma implementation "dynarray.h"
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
#include "wx/dynarray.h" #include "wx/dynarray.h"
#include <wx/intl.h> #include "wx/intl.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> // for memmove #include <string.h> // for memmove

View File

@@ -132,10 +132,10 @@
#endif #endif
// wxWindows // wxWindows
#include <wx/string.h> #include "wx/string.h"
#include <wx/intl.h> #include "wx/intl.h"
#include <wx/file.h> #include "wx/file.h"
#include <wx/log.h> #include "wx/log.h"
#ifndef MAX_PATH #ifndef MAX_PATH
#define MAX_PATH 512 #define MAX_PATH 512

View File

@@ -34,7 +34,7 @@
#endif #endif
#include "wx/utils.h" #include "wx/utils.h"
#include <wx/intl.h> #include "wx/intl.h"
// there are just too many of those... // there are just too many of those...
#ifdef __VISUALC__ #ifdef __VISUALC__

View File

@@ -23,7 +23,7 @@ limitation)
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#ifdef __BORDLANDC__ #ifdef __BORDLANDC__
#pragma hdrstop #pragma hdrstop
@@ -37,7 +37,7 @@ limitation)
#if wxUSE_FS_INET #if wxUSE_FS_INET
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/wfstream.h" #include "wx/wfstream.h"

View File

@@ -11,7 +11,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#ifdef __BORDLANDC__ #ifdef __BORDLANDC__
#pragma hdrstop #pragma hdrstop
@@ -20,7 +20,7 @@
#if wxUSE_FS_ZIP #if wxUSE_FS_ZIP
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/filesys.h" #include "wx/filesys.h"

View File

@@ -13,7 +13,7 @@
*/ */
// For compilers that support precompilation, includes "wx.h". // For compilers that support precompilation, includes "wx.h".
#include <wx/wxprec.h> #include "wx/wxprec.h"
#ifdef __BORLANDC__ #ifdef __BORLANDC__
# pragma hdrstop # pragma hdrstop

View File

@@ -35,7 +35,7 @@
#include "wx/app.h" #include "wx/app.h"
#endif #endif
#include <wx/log.h> #include "wx/log.h"
#include <stdlib.h> #include <stdlib.h>
#include "wx/ioswrap.h" #include "wx/ioswrap.h"

View File

@@ -23,8 +23,8 @@
#if wxUSE_STREAMS #if wxUSE_STREAMS
#include <stdlib.h> #include <stdlib.h>
#include <wx/stream.h> #include "wx/stream.h"
#include <wx/mstream.h> #include "wx/mstream.h"
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxMemoryInputStream // wxMemoryInputStream

View File

@@ -30,11 +30,11 @@
#include <memory.h> #include <memory.h>
#endif #endif
#include <wx/defs.h> #include "wx/defs.h"
#include <wx/object.h> #include "wx/object.h"
#include <wx/log.h> #include "wx/log.h"
#include <wx/gsocket.h> #include "wx/gsocket.h"
#include <wx/sckaddr.h> #include "wx/sckaddr.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_ABSTRACT_CLASS(wxSockAddress, wxObject) IMPLEMENT_ABSTRACT_CLASS(wxSockAddress, wxObject)

View File

@@ -24,8 +24,8 @@
#endif #endif
#include <stdio.h> #include <stdio.h>
#include <wx/wfstream.h> #include "wx/wfstream.h"
#include <wx/protocol/file.h> #include "wx/protocol/file.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol) IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol)

View File

@@ -27,9 +27,9 @@
#if wxUSE_STREAMS #if wxUSE_STREAMS
#include <ctype.h> #include <ctype.h>
#include <wx/stream.h> #include "wx/stream.h"
#include <wx/datstrm.h> #include "wx/datstrm.h"
#include <wx/objstrm.h> #include "wx/objstrm.h"
#define BUF_TEMP_SIZE 10000 #define BUF_TEMP_SIZE 10000

View File

@@ -36,7 +36,7 @@
#include "wx/string.h" #include "wx/string.h"
#include "wx/intl.h" #include "wx/intl.h"
#if wxUSE_THREADS #if wxUSE_THREADS
#include <wx/thread.h> #include "wx/thread.h"
#endif #endif
#endif #endif

View File

@@ -23,10 +23,10 @@
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <wx/string.h> #include "wx/string.h"
#include <wx/list.h> #include "wx/list.h"
#include <wx/utils.h> #include "wx/utils.h"
#include <wx/url.h> #include "wx/url.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_CLASS(wxProtoInfo, wxObject) IMPLEMENT_CLASS(wxProtoInfo, wxObject)

View File

@@ -31,7 +31,7 @@
#include "wx/dcclient.h" #include "wx/dcclient.h"
#include "wx/choice.h" #include "wx/choice.h"
#include "wx/checkbox.h" #include "wx/checkbox.h"
#include <wx/intl.h> #include "wx/intl.h"
#endif #endif
#include <string.h> #include <string.h>

View File

@@ -184,7 +184,7 @@ wxGridTableMessage::wxGridTableMessage( wxGridTableBase *table, int id,
// this is a magic incantation which must be done! // this is a magic incantation which must be done!
#include <wx/arrimpl.cpp> #include "wx/arrimpl.cpp"
WX_DEFINE_OBJARRAY(wxGridStringArray) WX_DEFINE_OBJARRAY(wxGridStringArray)

View File

@@ -46,7 +46,7 @@
#include "wx/filedlg.h" #include "wx/filedlg.h"
#include "wx/choice.h" #include "wx/choice.h"
#include "wx/combobox.h" #include "wx/combobox.h"
#include <wx/intl.h> #include "wx/intl.h"
#include "wx/sizer.h" #include "wx/sizer.h"
#endif #endif

View File

@@ -17,7 +17,7 @@
#include "wx/dialog.h" #include "wx/dialog.h"
#include "wx/menu.h" #include "wx/menu.h"
#include <wx/intl.h> #include "wx/intl.h"
#include "glib.h" #include "glib.h"
#include "gdk/gdk.h" #include "gdk/gdk.h"

View File

@@ -25,7 +25,7 @@
#endif #endif
#include "wx/gtk/treectrl.h" #include "wx/gtk/treectrl.h"
#include <wx/textctrl.h> #include "wx/textctrl.h"
#include "wx/log.h" #include "wx/log.h"
#include <gtk/gtk.h> #include <gtk/gtk.h>

View File

@@ -13,7 +13,7 @@
#pragma implementation "wave.h" #pragma implementation "wave.h"
#endif #endif
#include <wx/setup.h> #include "wx/setup.h"
#if wxUSE_WAVE #if wxUSE_WAVE

View File

@@ -17,7 +17,7 @@
#include "wx/dialog.h" #include "wx/dialog.h"
#include "wx/menu.h" #include "wx/menu.h"
#include <wx/intl.h> #include "wx/intl.h"
#include "glib.h" #include "glib.h"
#include "gdk/gdk.h" #include "gdk/gdk.h"

View File

@@ -25,7 +25,7 @@
#endif #endif
#include "wx/gtk/treectrl.h" #include "wx/gtk/treectrl.h"
#include <wx/textctrl.h> #include "wx/textctrl.h"
#include "wx/log.h" #include "wx/log.h"
#include <gtk/gtk.h> #include <gtk/gtk.h>

View File

@@ -13,7 +13,7 @@
#pragma implementation "wave.h" #pragma implementation "wave.h"
#endif #endif
#include <wx/setup.h> #include "wx/setup.h"
#if wxUSE_WAVE #if wxUSE_WAVE

View File

@@ -25,7 +25,7 @@
#if wxUSE_HTML #if wxUSE_HTML
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/html/helpfrm.h" #include "wx/html/helpfrm.h"

View File

@@ -12,7 +12,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -22,7 +22,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/tokenzr.h" #include "wx/tokenzr.h"

View File

@@ -12,7 +12,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -22,7 +22,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/html/htmltag.h" #include "wx/html/htmltag.h"

View File

@@ -12,7 +12,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -22,7 +22,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/html/htmlwin.h" #include "wx/html/htmlwin.h"
@@ -37,7 +37,7 @@
#include <wx/arrimpl.cpp> #include "wx/arrimpl.cpp"
WX_DEFINE_OBJARRAY(HtmlHistoryArray) WX_DEFINE_OBJARRAY(HtmlHistoryArray)

View File

@@ -11,7 +11,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -21,7 +21,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/html/forcelnk.h" #include "wx/html/forcelnk.h"

View File

@@ -11,7 +11,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
@@ -21,7 +21,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif

View File

@@ -40,7 +40,7 @@ FORCE_LINK_ME(mod_image)
WX_DECLARE_OBJARRAY(int, CoordArray); WX_DECLARE_OBJARRAY(int, CoordArray);
#include <wx/arrimpl.cpp> // this is a magic incantation which must be done! #include "wx/arrimpl.cpp" // this is a magic incantation which must be done!
WX_DEFINE_OBJARRAY(CoordArray); WX_DEFINE_OBJARRAY(CoordArray);

View File

@@ -21,7 +21,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif

View File

@@ -11,7 +11,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -20,7 +20,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
@@ -28,7 +28,7 @@
#include "wx/html/m_templ.h" #include "wx/html/m_templ.h"
#include "wx/html/htmlcell.h" #include "wx/html/htmlcell.h"
#include <wx/tokenzr.h> #include "wx/tokenzr.h"
FORCE_LINK_ME(mod_pre) FORCE_LINK_ME(mod_pre)

View File

@@ -11,7 +11,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -20,7 +20,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif

View File

@@ -12,7 +12,7 @@
#pragma implementation #pragma implementation
#endif #endif
#include <wx/wxprec.h> #include "wx/wxprec.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_HTML #if wxUSE_HTML
@@ -22,7 +22,7 @@
#endif #endif
#ifndef WXPRECOMP #ifndef WXPRECOMP
#include <wx/wx.h> #include "wx/wx.h"
#endif #endif
#include "wx/html/htmldefs.h" #include "wx/html/htmldefs.h"

View File

@@ -19,7 +19,7 @@
#include <Xm/Xm.h> #include <Xm/Xm.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)

View File

@@ -16,7 +16,7 @@
#include "wx/gauge.h" #include "wx/gauge.h"
#include <Xm/Xm.h> #include <Xm/Xm.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl)

View File

@@ -13,7 +13,7 @@
#pragma implementation "joystick.h" #pragma implementation "joystick.h"
#endif #endif
#include <wx/joystick.h> #include "wx/joystick.h"
IMPLEMENT_DYNAMIC_CLASS(wxJoystick, wxObject) IMPLEMENT_DYNAMIC_CLASS(wxJoystick, wxObject)

View File

@@ -24,7 +24,7 @@
#include <Xm/Form.h> #include <Xm/Form.h>
#include <Xm/Frame.h> #include <Xm/Frame.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
void wxRadioBoxCallback (Widget w, XtPointer clientData, void wxRadioBoxCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs); XmToggleButtonCallbackStruct * cbs);

View File

@@ -23,7 +23,7 @@
#include <Xm/RowColumn.h> #include <Xm/RowColumn.h>
#include <Xm/Form.h> #include <Xm/Form.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
void wxRadioButtonCallback (Widget w, XtPointer clientData, void wxRadioButtonCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs); XmToggleButtonCallbackStruct * cbs);

View File

@@ -20,7 +20,7 @@
#include <Xm/RowColumn.h> #include <Xm/RowColumn.h>
#include <Xm/ScrollBar.h> #include <Xm/ScrollBar.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
static void wxScrollBarCallback(Widget widget, XtPointer clientData, static void wxScrollBarCallback(Widget widget, XtPointer clientData,
XmScaleCallbackStruct *cbs); XmScaleCallbackStruct *cbs);

View File

@@ -22,7 +22,7 @@
#include <Xm/RowColumn.h> #include <Xm/RowColumn.h>
#include <Xm/Scale.h> #include <Xm/Scale.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
void wxSliderCallback (Widget widget, XtPointer clientData, XmScaleCallbackStruct * cbs); void wxSliderCallback (Widget widget, XtPointer clientData, XmScaleCallbackStruct * cbs);

View File

@@ -20,7 +20,7 @@
#include <Xm/LabelG.h> #include <Xm/LabelG.h>
#include <Xm/RowColumn.h> #include <Xm/RowColumn.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)

View File

@@ -21,7 +21,7 @@
#include <Xm/Label.h> #include <Xm/Label.h>
#include <Xm/LabelG.h> #include <Xm/LabelG.h>
#include <wx/motif/private.h> #include "wx/motif/private.h"
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)

View File

@@ -14,7 +14,7 @@
#pragma implementation "taskbar.h" #pragma implementation "taskbar.h"
#endif #endif
#include <wx/taskbar.h> #include "wx/taskbar.h"
wxTaskBarIcon::wxTaskBarIcon() wxTaskBarIcon::wxTaskBarIcon()
{ {

View File

@@ -38,7 +38,7 @@
#include "wx/log.h" #include "wx/log.h"
#if wxUSE_NATIVE_STATUSBAR #if wxUSE_NATIVE_STATUSBAR
#include <wx/msw/statbr95.h> #include "wx/msw/statbr95.h"
#endif #endif
extern wxWindowList wxModelessWindows; extern wxWindowList wxModelessWindows;

View File

@@ -30,7 +30,7 @@
#include <time.h> #include <time.h>
#ifdef __WXMSW__ #ifdef __WXMSW__
#include <wx/msw/private.h> #include "wx/msw/private.h"
#endif #endif
#include <string.h> #include <string.h>

View File

@@ -21,18 +21,18 @@
#endif #endif
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include <wx/string.h> #include "wx/string.h"
#include <wx/intl.h> #include "wx/intl.h"
#include <wx/event.h> #include "wx/event.h"
#include <wx/app.h> #include "wx/app.h"
#include <wx/utils.h> #include "wx/utils.h"
#endif //WX_PRECOMP #endif //WX_PRECOMP
#include <wx/dynarray.h> #include "wx/dynarray.h"
#include <wx/log.h> #include "wx/log.h"
#include <wx/config.h> #include "wx/config.h"
#include <wx/msw/iniconf.h> #include "wx/msw/iniconf.h"
// _WINDOWS_ is defined when windows.h is included, // _WINDOWS_ is defined when windows.h is included,
// __WXMSW__ is defined for MS Windows compilation // __WXMSW__ is defined for MS Windows compilation

View File

@@ -35,7 +35,7 @@ typedef UINT MMRESULT;
#ifndef __TWIN32__ #ifndef __TWIN32__
#ifdef __GNUWIN32__ #ifdef __GNUWIN32__
#ifndef wxUSE_NORLANDER_HEADERS #ifndef wxUSE_NORLANDER_HEADERS
#include <wx/msw/gnuwin32/extra.h> #include "wx/msw/gnuwin32/extra.h"
#endif #endif
#endif #endif
#endif #endif
@@ -45,8 +45,8 @@ typedef UINT MMRESULT;
#define NO_JOYGETPOSEX #define NO_JOYGETPOSEX
#endif #endif
#include <wx/window.h> #include "wx/window.h"
#include <wx/msw/joystick.h> #include "wx/msw/joystick.h"
IMPLEMENT_DYNAMIC_CLASS(wxJoystick, wxObject) IMPLEMENT_DYNAMIC_CLASS(wxJoystick, wxObject)

View File

@@ -50,7 +50,7 @@
#ifndef __TWIN32__ #ifndef __TWIN32__
#if defined(__GNUWIN32__) #if defined(__GNUWIN32__)
#ifndef wxUSE_NORLANDER_HEADERS #ifndef wxUSE_NORLANDER_HEADERS
#include <wx/msw/gnuwin32/extra.h> #include "wx/msw/gnuwin32/extra.h"
#endif #endif
#endif #endif
#endif #endif

View File

@@ -45,7 +45,7 @@
#include "wx/msw/private.h" #include "wx/msw/private.h"
#if wxUSE_NATIVE_STATUSBAR #if wxUSE_NATIVE_STATUSBAR
#include <wx/msw/statbr95.h> #include "wx/msw/statbr95.h"
#endif #endif
#include <string.h> #include <string.h>

View File

@@ -22,16 +22,16 @@
// wxWindows // wxWindows
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include <wx/string.h> #include "wx/string.h"
#endif // WX_PRECOMP #endif // WX_PRECOMP
#include <wx/log.h> #include "wx/log.h"
#include <wx/imaglist.h> #include "wx/imaglist.h"
#include <wx/event.h> #include "wx/event.h"
#include <wx/control.h> #include "wx/control.h"
#include <wx/notebook.h> #include "wx/notebook.h"
#include <wx/msw/private.h> #include "wx/msw/private.h"
// Windows standard headers // Windows standard headers
#ifndef __WIN95__ #ifndef __WIN95__

View File

@@ -28,14 +28,14 @@
#pragma hdrstop #pragma hdrstop
#endif #endif
#include <wx/setup.h> #include "wx/setup.h"
#include <wx/log.h> #include "wx/log.h"
#include <windows.h> #include <windows.h>
// OLE // OLE
#include <wx/msw/ole/uuid.h> #include "wx/msw/ole/uuid.h"
#include <wx/msw/ole/oleutils.h> #include "wx/msw/ole/oleutils.h"
#if defined(__VISUALC__) && (__VISUALC__ > 1000) #if defined(__VISUALC__) && (__VISUALC__ > 1000)
#include <docobj.h> #include <docobj.h>

View File

@@ -24,14 +24,14 @@
#pragma hdrstop #pragma hdrstop
#endif #endif
#include <wx/setup.h> #include "wx/setup.h"
#if wxUSE_DRAG_AND_DROP #if wxUSE_DRAG_AND_DROP
// standard headers // standard headers
#include <rpc.h> // UUID related functions #include <rpc.h> // UUID related functions
#include <wx/msw/ole/uuid.h> #include "wx/msw/ole/uuid.h"

View File

@@ -765,7 +765,7 @@ bool wxPNGReader::SaveXPM(wxChar *filename, wxChar *name)
return TRUE; return TRUE;
} }
#include <wx/msw/pnghand.h> #include "wx/msw/pnghand.h"
IMPLEMENT_DYNAMIC_CLASS(wxPNGFileHandler, wxBitmapHandler) IMPLEMENT_DYNAMIC_CLASS(wxPNGFileHandler, wxBitmapHandler)

View File

@@ -22,8 +22,8 @@
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include <stdio.h> #include <stdio.h>
#include <wx/utils.h> #include "wx/utils.h"
#include <wx/brush.h> #include "wx/brush.h"
#endif #endif
#ifdef __WIN95__ #ifdef __WIN95__

View File

@@ -33,13 +33,13 @@
#include <windows.h> #include <windows.h>
#include <string.h> #include <string.h>
#include <wx/msw/taskbar.h> #include "wx/msw/taskbar.h"
#include <wx/msw/private.h> #include "wx/msw/private.h"
#ifndef __TWIN32__ #ifndef __TWIN32__
#ifdef __GNUWIN32__ #ifdef __GNUWIN32__
#ifndef wxUSE_NORLANDER_HEADERS #ifndef wxUSE_NORLANDER_HEADERS
#include <wx/msw/gnuwin32/extra.h> #include "wx/msw/gnuwin32/extra.h"
#endif #endif
#endif #endif
#endif #endif

View File

@@ -95,7 +95,7 @@
#ifndef __TWIN32__ #ifndef __TWIN32__
#ifdef __GNUWIN32__ #ifdef __GNUWIN32__
#ifndef wxUSE_NORLANDER_HEADERS #ifndef wxUSE_NORLANDER_HEADERS
#include <wx/msw/gnuwin32/extra.h> #include "wx/msw/gnuwin32/extra.h"
#endif #endif
#endif #endif
#endif #endif