From 70e01a6849ea6e7128dbe07359d7b7cde057560d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 31 Mar 2017 17:04:56 +0200 Subject: [PATCH] Use quotes, not angle brackets, for wx header in svg sample Samples are part of wxWidgets and use quotes for including wx headers to indicate that they're part of the same tree and not global headers, so just follow the same convention here. --- samples/svg/svgtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/svg/svgtest.cpp b/samples/svg/svgtest.cpp index 383cc2133e..b652460be5 100644 --- a/samples/svg/svgtest.cpp +++ b/samples/svg/svgtest.cpp @@ -26,7 +26,7 @@ #endif #include "wx/dcsvg.h" -#include +#include "wx/notebook.h" #include "SVGlogo24.xpm"