From 47794945b5c834ca29a34ca0e27afec6c907a062 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Sat, 6 Feb 2016 17:09:36 +0100 Subject: [PATCH] Fixed compiling with MSVC. --- src/generic/listctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 5551dc0627..3b48b76c36 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -46,7 +46,7 @@ #endif #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) - #define "wx/msw/wrapwin.h" + #include "wx/msw/wrapwin.h" #endif // NOTE: If using the wxListBox visual attributes works everywhere then this can @@ -4589,7 +4589,7 @@ void wxGenericListCtrl::CreateOrDestroyHeaderWindowAsNeeded() ), wxTAB_TRAVERSAL ); - + #if defined( __WXMAC__ ) static wxFont font( wxOSX_SYSTEM_FONT_SMALL ); m_headerWin->SetFont( font );