use "..." instead of <...> for wx headers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -52,14 +52,14 @@
|
|||||||
#include "wx/wxprec.h"
|
#include "wx/wxprec.h"
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include <wx/string.h>
|
#include "wx/string.h"
|
||||||
#include <wx/log.h>
|
#include "wx/log.h"
|
||||||
#include <wx/dynarray.h>
|
#include "wx/dynarray.h"
|
||||||
#include <wx/wx.h>
|
#include "wx/wx.h"
|
||||||
#endif // WX_PRECOMP
|
#endif // WX_PRECOMP
|
||||||
|
|
||||||
#include <wx/file.h>
|
#include "wx/file.h"
|
||||||
#include <wx/regex.h>
|
#include "wx/regex.h"
|
||||||
|
|
||||||
// C++ parsing classes
|
// C++ parsing classes
|
||||||
#include "cjparser.h"
|
#include "cjparser.h"
|
||||||
@@ -1977,6 +1977,9 @@ static const wxString GetVersionString()
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.15 2001/11/22 21:59:58 GD
|
||||||
|
use "..." instead of <...> for wx headers
|
||||||
|
|
||||||
Revision 1.14 2001/07/19 13:51:29 VZ
|
Revision 1.14 2001/07/19 13:51:29 VZ
|
||||||
fixes to version string
|
fixes to version string
|
||||||
|
|
||||||
|
@@ -23,12 +23,12 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include <wx/wx.h>
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <wx/toolbar.h>
|
#include "wx/toolbar.h"
|
||||||
#include <wx/log.h>
|
#include "wx/log.h"
|
||||||
#include <wx/image.h>
|
#include "wx/image.h"
|
||||||
|
|
||||||
// define this to 1 to use wxToolBarSimple instead of the native one
|
// define this to 1 to use wxToolBarSimple instead of the native one
|
||||||
#define USE_GENERIC_TBAR 0
|
#define USE_GENERIC_TBAR 0
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
#error wxToolBarSimple is not compiled in, set wxUSE_TOOLBAR_SIMPLE \
|
#error wxToolBarSimple is not compiled in, set wxUSE_TOOLBAR_SIMPLE \
|
||||||
to 1 in setup.h and recompile the library.
|
to 1 in setup.h and recompile the library.
|
||||||
#else
|
#else
|
||||||
#include <wx/tbarsmpl.h>
|
#include "wx/tbarsmpl.h"
|
||||||
#endif
|
#endif
|
||||||
#endif // USE_GENERIC_TBAR
|
#endif // USE_GENERIC_TBAR
|
||||||
|
|
||||||
|
@@ -432,7 +432,7 @@ void wxResourceEditorDialogHandler::OnMouseEvent(wxMouseEvent& event)
|
|||||||
firstDragY = y;
|
firstDragY = y;
|
||||||
dragType = wxDRAG_TYPE_BOUNDING_BOX;
|
dragType = wxDRAG_TYPE_BOUNDING_BOX;
|
||||||
wxClientDC dc(handlerDialog);
|
wxClientDC dc(handlerDialog);
|
||||||
OnDragBegin(x, y, keys, dc, NULL);
|
OnDragBegin(x, y, keys, dc, 0);
|
||||||
dragMode = wxDRAG_MODE_CONTINUE_LEFT;
|
dragMode = wxDRAG_MODE_CONTINUE_LEFT;
|
||||||
oldDragX = x; oldDragY = y;
|
oldDragX = x; oldDragY = y;
|
||||||
}
|
}
|
||||||
|
@@ -12,8 +12,8 @@
|
|||||||
#ifndef _EDLIST_H_
|
#ifndef _EDLIST_H_
|
||||||
#define _EDLIST_H_
|
#define _EDLIST_H_
|
||||||
|
|
||||||
#include <wx/listctrl.h>
|
#include "wx/listctrl.h"
|
||||||
#include <wx/imaglist.h>
|
#include "wx/imaglist.h"
|
||||||
|
|
||||||
class wxResourceEditorControlList: public wxListCtrl
|
class wxResourceEditorControlList: public wxListCtrl
|
||||||
{
|
{
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
#ifndef _EDTREE_H_
|
#ifndef _EDTREE_H_
|
||||||
#define _EDTREE_H_
|
#define _EDTREE_H_
|
||||||
|
|
||||||
#include <wx/treectrl.h>
|
#include "wx/treectrl.h"
|
||||||
|
|
||||||
class wxResourceEditorProjectTree: public wxTreeCtrl
|
class wxResourceEditorProjectTree: public wxTreeCtrl
|
||||||
{
|
{
|
||||||
|
@@ -175,7 +175,7 @@ bool wxResourceManager::Initialize()
|
|||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
m_bitmapImage = new wxBitmap("WXWINBMP", wxBITMAP_TYPE_BMP_RESOURCE);
|
m_bitmapImage = new wxBitmap("WXWINBMP", wxBITMAP_TYPE_BMP_RESOURCE);
|
||||||
#endif
|
#endif
|
||||||
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
|
||||||
m_bitmapImage = new wxBitmap( wxwin_xpm );
|
m_bitmapImage = new wxBitmap( wxwin_xpm );
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
#include "wx/wx.h"
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <wx/file.h>
|
#include "wx/file.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@@ -28,15 +28,15 @@
|
|||||||
// headers
|
// headers
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include <wx/string.h>
|
#include "wx/string.h"
|
||||||
#include <wx/file.h>
|
#include "wx/file.h"
|
||||||
#include <wx/ffile.h>
|
#include "wx/ffile.h"
|
||||||
#include <wx/app.h>
|
#include "wx/app.h"
|
||||||
#include <wx/log.h>
|
#include "wx/log.h"
|
||||||
#include <wx/dir.h>
|
#include "wx/dir.h"
|
||||||
#include <wx/textfile.h>
|
#include "wx/textfile.h"
|
||||||
#include <wx/datetime.h>
|
#include "wx/datetime.h"
|
||||||
#include <wx/cmdline.h>
|
#include "wx/cmdline.h"
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// the application class
|
// the application class
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include <wx/wx.h>
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@@ -24,8 +24,7 @@
|
|||||||
#include "wx/wx.h"
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "wx/hash.h"
|
||||||
#include <wx/hash.h>
|
|
||||||
|
|
||||||
#ifdef new
|
#ifdef new
|
||||||
#undef new
|
#undef new
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
#include "wx/wx.h"
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <wx/hash.h>
|
#include "wx/hash.h"
|
||||||
|
|
||||||
#ifdef new
|
#ifdef new
|
||||||
#undef new
|
#undef new
|
||||||
|
Reference in New Issue
Block a user