From afdb7eca8787f4afb5807583d8b48869097f31bd Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Sun, 16 Jul 2017 14:47:45 +0200 Subject: [PATCH] Use quotes and not angle brackets around the includes of wxWidgets itself --- samples/propgrid/propgrid.cpp | 16 ++++++++-------- samples/propgrid/sampleprops.cpp | 4 ++-- samples/propgrid/tests.cpp | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/samples/propgrid/propgrid.cpp b/samples/propgrid/propgrid.cpp index 48a762f557..1c120b6c4e 100644 --- a/samples/propgrid/propgrid.cpp +++ b/samples/propgrid/propgrid.cpp @@ -44,34 +44,34 @@ #error "Please set wxUSE_PROPGRID to 1 and rebuild the library." #endif -#include +#include "wx/numdlg.h" // ----------------------------------------------------------------------- // Main propertygrid header. -#include +#include "wx/propgrid/propgrid.h" // Extra property classes. -#include +#include "wx/propgrid/advprops.h" // This defines wxPropertyGridManager. -#include +#include "wx/propgrid/manager.h" #include "propgrid.h" #include "sampleprops.h" #if wxUSE_DATEPICKCTRL - #include + #include "wx/datectrl.h" #endif -#include +#include "wx/artprov.h" #ifndef wxHAS_IMAGES_IN_RESOURCES #include "../sample.xpm" #endif -#include +#include "wx/popupwin.h" // ----------------------------------------------------------------------- // wxSampleMultiButtonEditor @@ -3002,7 +3002,7 @@ void FormMain::OnDeleteChoice( wxCommandEvent& WXUNUSED(event) ) // ----------------------------------------------------------------------- -#include +#include "wx/colordlg.h" void FormMain::OnMisc ( wxCommandEvent& event ) { diff --git a/samples/propgrid/sampleprops.cpp b/samples/propgrid/sampleprops.cpp index 151f91dc16..788b414767 100644 --- a/samples/propgrid/sampleprops.cpp +++ b/samples/propgrid/sampleprops.cpp @@ -27,8 +27,8 @@ // ----------------------------------------------------------------------- -#include -#include +#include "wx/propgrid/propgrid.h" +#include "wx/propgrid/advprops.h" #ifndef WX_PROPGRID_SAMPLEPROPS_H #include "sampleprops.h" diff --git a/samples/propgrid/tests.cpp b/samples/propgrid/tests.cpp index abae41ac15..af1d93c5df 100644 --- a/samples/propgrid/tests.cpp +++ b/samples/propgrid/tests.cpp @@ -18,9 +18,9 @@ #include "wx/wx.h" #endif -#include -#include -#include +#include "wx/propgrid/propgrid.h" +#include "wx/propgrid/advprops.h" +#include "wx/propgrid/manager.h" #include "propgrid.h" #include "sampleprops.h"