aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-04 13:45:20 +0000
committernyamatongwe <devnull@localhost>2000-07-04 13:45:20 +0000
commitdb04c9f43e663e771b0eeeca0cae3b8924afb35e (patch)
tree4786262700369ae63bda95983c5709ca9b6df54e /win32/PlatWin.cxx
parent0a7ba09f0c8bd0f1c02b9286bd9ae036bcc08c19 (diff)
downloadscintilla-mirror-db04c9f43e663e771b0eeeca0cae3b8924afb35e.tar.gz
Auto completion border chrome reversed to put above edit layer.
InitCommonControls removed as not needed. Make files changed to remove system libraries that were not used.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r--win32/PlatWin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index f1c521521..bea215566 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -706,8 +706,8 @@ ListBox::~ListBox() {
void ListBox::Create(Window &parent, int ctrlID) {
id = ::CreateWindowEx(
- WS_EX_CLIENTEDGE, "listbox", "",
- WS_CHILD|WS_BORDER|WS_VSCROLL|LBS_SORT|LBS_NOTIFY,
+ WS_EX_WINDOWEDGE, "listbox", "",
+ WS_CHILD | WS_THICKFRAME | WS_VSCROLL | LBS_SORT | LBS_NOTIFY,
100,100, 150,80, parent.GetID(), reinterpret_cast<HMENU>(ctrlID),
parent.GetInstance(), 0);
}