From: Vadim Zeitlin Date: Tue, 9 Dec 2008 14:45:23 +0000 (+0000) Subject: define I_IMAGENONE now that we use it, at least VC6 doesn't have it (thanks buildbot) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/659d0ee81da0eb00220c598055c7ac2188a3d391?hp=1efd7bc655b04d424ba5fb42d1f281edceff7b2a define I_IMAGENONE now that we use it, at least VC6 doesn't have it (thanks buildbot) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57218 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index ec4de67ffe..56339ee402 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -211,10 +211,14 @@ typedef struct wxtagNMLVCUSTOMDRAW_ { #endif // defined __VISUALC__ && __VISUALC__ <= 1100 // ---------------------------------------------------------------------------- -// ListView common control -// Needed by listctrl.cpp +// definitions related to ListView and Header common controls, needed by +// msw/listctrl.cpp and msw/headerctrl.cpp // ---------------------------------------------------------------------------- +#ifndef I_IMAGENONE + #define I_IMAGENONE (-2) +#endif + #ifndef LVS_EX_FULLROWSELECT #define LVS_EX_FULLROWSELECT 0x00000020 #endif