]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes bug 414369
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Apr 2001 00:29:08 +0000 (00:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Apr 2001 00:29:08 +0000 (00:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/listbox.tex
src/msw/listbox.cpp

index 0d8465cb807e533ddca65226783c4850c5926758..c7707cb4aac196b638bcce5ee4d53f87a0f9956c 100644 (file)
@@ -39,6 +39,10 @@ select multiple items using the SHIFT key and the mouse or special key combinati
 \twocolitem{\windowstyle{wxLB\_SORT}}{The listbox contents are sorted in alphabetical order.}
 \end{twocollist}
 
+Note that {\tt wxLB\_SINGLE}, {\tt wxLB\_MULTIPLE} and {\tt wxLB\_EXTENDED}
+styles are mutually exclusive and you can specify at most one of them (single
+selection is the default).
+
 See also \helpref{window styles overview}{windowstyles}.
 
 \wxheading{Event handling}
index 19a8753d283e53984466ac50c0ca5fea0dbddb12..a2175877e775093e19ecf741cf21eb79de9c0c88 100644 (file)
@@ -157,6 +157,10 @@ bool wxListBox::Create(wxWindow *parent,
 
     DWORD wstyle = WS_VISIBLE | WS_VSCROLL | WS_TABSTOP |
                    LBS_NOTIFY | LBS_HASSTRINGS /* | WS_CLIPSIBLINGS */;
+
+    wxASSERT_MSG( !(style & wxLB_MULTIPLE) || !(style & wxLB_EXTENDED),
+                  _T("only one of listbox selection modes can be specified") );
+
     if (m_windowStyle & wxLB_MULTIPLE)
         wstyle |= LBS_MULTIPLESEL;
     else if (m_windowStyle & wxLB_EXTENDED)