From 36150c17ed3b344678f98c613c8e223b8c792f04 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Mon, 29 Oct 2007 15:14:07 +0000 Subject: [PATCH] DMC does not have TTF_TRANSPARENT git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49519 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/tooltip.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/msw/tooltip.cpp b/src/msw/tooltip.cpp index d2d29228ad..7f3ec121d8 100644 --- a/src/msw/tooltip.cpp +++ b/src/msw/tooltip.cpp @@ -97,11 +97,12 @@ public: // then as the control gets "focus lost" events and dismisses the // tooltip which then reappears because mouse remains hovering over the // control, see SF patch 1821229 +#ifndef __DMC__ if ( wxApp::GetComCtl32Version() >= 470 ) { uFlags |= TTF_TRANSPARENT; } - +#endif uId = (UINT)hwndOwner; } };