diff options
author | nyamatongwe <devnull@localhost> | 2001-08-02 13:35:33 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-02 13:35:33 +0000 |
commit | 10c79c1da92024be5e767ec43cd620e85709ac8f (patch) | |
tree | 29ef747ebfe05058bd6cbd23a23c9a35c25634a7 | |
parent | 1188c8f4155775e78b178e65c34e275328479f98 (diff) | |
download | scintilla-mirror-10c79c1da92024be5e767ec43cd620e85709ac8f.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); } |