From 89ba8744caf2223d0dcfb68d69c657206ab073d3 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 2 Aug 2001 13:35:33 +0000 Subject: Removed LBS_SORT flag on list box creation as may need to show list in a different order to default case insensitive sort. --- win32/PlatWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index ab0cba5e1..0dab47a17 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -725,7 +725,7 @@ ListBox::~ListBox() { void ListBox::Create(Window &parent, int ctrlID) { id = ::CreateWindowEx( WS_EX_WINDOWEDGE, "listbox", "", - WS_CHILD | WS_THICKFRAME | WS_VSCROLL | LBS_SORT | LBS_NOTIFY, + WS_CHILD | WS_THICKFRAME | WS_VSCROLL | LBS_NOTIFY, 100,100, 150,80, parent.GetID(), reinterpret_cast(ctrlID), parent.GetInstance(), 0); } -- cgit v1.2.3