]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
merged optimizations from 2.2
[wxWidgets.git] / src / msw / listbox.cpp
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)