]> git.saurik.com Git - wxWidgets.git/commitdiff
Add borders if none specified
authorJulian Smart <julian@anthemion.co.uk>
Sat, 25 Feb 2012 22:29:25 +0000 (22:29 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 25 Feb 2012 22:29:25 +0000 (22:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/listbox_osx.cpp

index 26e6f307a0c63752f2ac53793b24bf36740b6cc1..982dad0705c1bf5fe6515172908fd35691aad474 100644 (file)
@@ -74,6 +74,9 @@ bool wxListBox::Create(
     DontCreatePeer();
     m_blockEvents = false;
 
+    if ( ! (style & wxNO_BORDER) )
+        style = (style & ~wxBORDER_MASK) | wxSUNKEN_BORDER ;
+
     wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED),
                   wxT("only a single listbox selection mode can be specified") );