Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f6a225b8
Commit
f6a225b8
authored
Jul 30, 1999
by
Francis Beaudet
Committed by
Alexandre Julliard
Jul 30, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed the WS_BORDER style to a WS_EX_CLIENTEDGE style for the
listbox control.
parent
bc0b0204
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
12 deletions
+26
-12
listbox.c
controls/listbox.c
+26
-12
No files found.
controls/listbox.c
View file @
f6a225b8
...
...
@@ -2179,14 +2179,32 @@ static inline LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
if
(
!
wnd
)
return
0
;
if
(
!
(
descr
=
*
(
LB_DESCR
**
)
wnd
->
wExtra
))
{
if
(
msg
==
WM_CREATE
)
{
if
(
!
LISTBOX_Create
(
wnd
,
NULL
))
return
-
1
;
TRACE
(
"creating wnd=%04x descr=%p
\n
"
,
hwnd
,
*
(
LB_DESCR
**
)
wnd
->
wExtra
);
return
0
;
}
switch
(
msg
)
{
case
WM_CREATE
:
{
if
(
!
LISTBOX_Create
(
wnd
,
NULL
))
return
-
1
;
TRACE
(
"creating wnd=%04x descr=%p
\n
"
,
hwnd
,
*
(
LB_DESCR
**
)
wnd
->
wExtra
);
return
0
;
}
case
WM_NCCREATE
:
{
/*
* When a listbox is not in a combobox and the look
* is win95, the WS_BORDER style is replaced with
* the WS_EX_CLIENTEDGE style.
*/
if
(
(
TWEAK_WineLook
>
WIN31_LOOK
)
&&
(
wnd
->
dwStyle
&
WS_BORDER
)
)
{
wnd
->
dwExStyle
|=
WS_EX_CLIENTEDGE
;
wnd
->
dwStyle
&=
~
WS_BORDER
;
}
}
}
/* Ignore all other messages before we get a WM_CREATE */
return
DefWindowProcA
(
hwnd
,
msg
,
wParam
,
lParam
);
}
...
...
@@ -2574,10 +2592,6 @@ static inline LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
}
break
;
case
WM_NCCREATE
:
if
(
TWEAK_WineLook
>
WIN31_LOOK
)
wnd
->
dwExStyle
|=
WS_EX_CLIENTEDGE
;
return
DefWindowProcA
(
hwnd
,
msg
,
wParam
,
lParam
);
default:
if
((
msg
>=
WM_USER
)
&&
(
msg
<
0xc000
))
WARN
(
"[%04x]: unknown msg %04x wp %08x lp %08lx
\n
"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment