]> git.saurik.com Git - wxWidgets.git/commitdiff
aui this really has to be BOOL and not bool
authorBenjamin Williams <bwilliams@kirix.com>
Wed, 1 Nov 2006 14:24:05 +0000 (14:24 +0000)
committerBenjamin Williams <bwilliams@kirix.com>
Wed, 1 Nov 2006 14:24:05 +0000 (14:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/floatpane.cpp

index a985e385cfa68834c60439e5a0343d512c64d0fa..807b49a4e0a737c5c997acefb02f932ca2aecc9c 100644 (file)
@@ -61,7 +61,7 @@ wxFloatingPane::wxFloatingPane(wxWindow* parent,
     // find out if the system supports solid window drag.
     // on non-msw systems, this is assumed to be the case
 #ifdef __WXMSW__
-    bool b = TRUE;
+    BOOL b = TRUE;
     SystemParametersInfo(38 /*SPI_GETDRAGFULLWINDOWS*/, 0, &b, 0);
     m_solid_drag = b ? true : false;
 #endif