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
1346740a
Commit
1346740a
authored
Dec 23, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Don't use the instance of the owner window for the autocomplete listbox.
parent
82016c19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
autocomplete.c
dlls/shell32/autocomplete.c
+2
-2
No files found.
dlls/shell32/autocomplete.c
View file @
1346740a
...
...
@@ -56,6 +56,7 @@
#include "shlobj.h"
#include "shldisp.h"
#include "debughlp.h"
#include "shell32_main.h"
#include "wine/unicode.h"
...
...
@@ -106,8 +107,7 @@ static void create_listbox(IAutoCompleteImpl *This)
This
->
hwndListBox
=
CreateWindowExW
(
0
,
WC_LISTBOXW
,
NULL
,
WS_BORDER
|
WS_CHILD
|
WS_VSCROLL
|
LBS_HASSTRINGS
|
LBS_NOTIFY
|
LBS_NOINTEGRALHEIGHT
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
hwndParent
,
NULL
,
(
HINSTANCE
)
GetWindowLongPtrW
(
hwndParent
,
GWLP_HINSTANCE
),
NULL
);
hwndParent
,
NULL
,
shell32_hInstance
,
NULL
);
if
(
This
->
hwndListBox
)
{
This
->
wpOrigLBoxProc
=
(
WNDPROC
)
SetWindowLongPtrW
(
This
->
hwndListBox
,
GWLP_WNDPROC
,
(
LONG_PTR
)
ACLBoxSubclassProc
);
...
...
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