Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e7e91402
Commit
e7e91402
authored
Jan 07, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Jan 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Refresh cert view when purpose selection is changed in the certificate manager dialog.
parent
73a8f894
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
2 deletions
+27
-2
main.c
dlls/cryptui/main.c
+27
-2
No files found.
dlls/cryptui/main.c
View file @
e7e91402
...
...
@@ -636,8 +636,33 @@ static LRESULT CALLBACK cert_mgr_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
refresh_store_certs
(
hwnd
);
break
;
case
IDC_MGR_ADVANCED
:
DialogBoxW
(
hInstance
,
MAKEINTRESOURCEW
(
IDD_CERT_MGR_ADVANCED
),
hwnd
,
cert_mgr_advanced_dlg_proc
);
if
(
DialogBoxW
(
hInstance
,
MAKEINTRESOURCEW
(
IDD_CERT_MGR_ADVANCED
),
hwnd
,
cert_mgr_advanced_dlg_proc
)
==
IDOK
)
{
HWND
cb
=
GetDlgItem
(
hwnd
,
IDC_MGR_PURPOSE_SELECTION
);
int
index
,
len
;
LPWSTR
curString
=
NULL
;
index
=
SendMessageW
(
cb
,
CB_GETCURSEL
,
0
,
0
);
if
(
index
>=
0
)
{
len
=
SendMessageW
(
cb
,
CB_GETLBTEXTLEN
,
index
,
0
);
curString
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
len
+
1
)
*
sizeof
(
WCHAR
));
SendMessageW
(
cb
,
CB_GETLBTEXT
,
index
,
(
LPARAM
)
curString
);
}
SendMessageW
(
cb
,
CB_RESETCONTENT
,
0
,
0
);
initialize_purpose_selection
(
hwnd
);
if
(
curString
)
{
index
=
SendMessageW
(
cb
,
CB_FINDSTRINGEXACT
,
-
1
,
(
LPARAM
)
curString
);
if
(
index
>=
0
)
SendMessageW
(
cb
,
CB_SETCURSEL
,
index
,
0
);
HeapFree
(
GetProcessHeap
(),
0
,
curString
);
}
refresh_store_certs
(
hwnd
);
}
break
;
case
IDCANCEL
:
free_certs
(
GetDlgItem
(
hwnd
,
IDC_MGR_CERTS
));
...
...
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