diff options
author | nyamatongwe <unknown> | 2001-08-02 13:35:33 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-08-02 13:35:33 +0000 |
commit | 89ba8744caf2223d0dcfb68d69c657206ab073d3 (patch) | |
tree | 29ef747ebfe05058bd6cbd23a23c9a35c25634a7 | |
parent | 1197a1745404029f687366d3cb36ec766cc5ee2b (diff) | |
download | scintilla-mirror-89ba8744caf2223d0dcfb68d69c657206ab073d3.tar.gz |
Removed LBS_SORT flag on list box creation as may need to show list in
a different order to default case insensitive sort.
-rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<HMENU>(ctrlID), parent.GetInstance(), 0); } |