diff options
Diffstat (limited to 'win32/PlatWin.cxx')
-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); } |