From 5ece068d9fff3fa17a3ac1deb662c9b8f91836d3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Dec 2001 18:26:52 +0000 Subject: [PATCH] compilation fix for old mingw32 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/treectrl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/msw/treectrl.cpp b/src/msw/treectrl.cpp index a0713416ab..4481d86387 100644 --- a/src/msw/treectrl.cpp +++ b/src/msw/treectrl.cpp @@ -76,6 +76,10 @@ #define TVS_CHECKBOXES 0x0100 #endif +#ifndef TVS_FULLROWSELECT + #define TVS_FULLROWSELECT 0x1000 +#endif + // old headers might miss these messages (comctl32.dll 4.71+ only) #ifndef TVM_SETBKCOLOR #define TVM_SETBKCOLOR (TV_FIRST + 29) -- 2.45.2