aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-04 13:45:20 +0000
committernyamatongwe <unknown>2000-07-04 13:45:20 +0000
commita21ce1bbb8c3f6e1330a451ca7e0d9ba7ce628db (patch)
tree4786262700369ae63bda95983c5709ca9b6df54e /win32/PlatWin.cxx
parent2f1d40dc70d3a289f1a572ee8a8dd09fdc7042ee (diff)
downloadscintilla-mirror-a21ce1bbb8c3f6e1330a451ca7e0d9ba7ce628db.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);
}