floating panes now respect wxPaneInfo::HasCloseButton()
authorBenjamin Williams <bwilliams@kirix.com>
Mon, 24 Jul 2006 16:00:37 +0000 (16:00 +0000)
committerBenjamin Williams <bwilliams@kirix.com>
Mon, 24 Jul 2006 16:00:37 +0000 (16:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/floatpane.cpp

index c70ef3e168a7a2cbe675921a0f2cd3a0584abbaf..b365752ee184e09d9d248844ae617fbc9ef9c1e4 100644 (file)
@@ -41,7 +41,8 @@ wxFloatingPane::wxFloatingPane(wxWindow* parent,
                 : wxFloatingPaneBaseClass(parent, id, wxEmptyString,
                         pane.floating_pos, pane.floating_size,
                         wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION |
-                        wxCLOSE_BOX | wxFRAME_NO_TASKBAR |
+                        (pane.HasCloseButton()?wxCLOSE_BOX:0) |
+                        wxFRAME_NO_TASKBAR |
                         wxFRAME_FLOAT_ON_PARENT | wxCLIP_CHILDREN |
                         (pane.IsFixed()?0:wxRESIZE_BORDER)
                         )