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
9b69fe23
Commit
9b69fe23
authored
Nov 30, 2018
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Have a single empty wide string at the top of main.c.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
be8870d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
main.c
dlls/cryptui/main.c
+2
-3
No files found.
dlls/cryptui/main.c
View file @
9b69fe23
...
...
@@ -46,6 +46,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(cryptui);
static
HINSTANCE
hInstance
;
static
const
WCHAR
empty
[]
=
{
0
};
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
...
...
@@ -804,8 +806,6 @@ static LRESULT CALLBACK cert_mgr_advanced_dlg_proc(HWND hwnd, UINT msg,
static
void
cert_mgr_clear_cert_selection
(
HWND
hwnd
)
{
WCHAR
empty
[]
=
{
0
};
EnableWindow
(
GetDlgItem
(
hwnd
,
IDC_MGR_EXPORT
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hwnd
,
IDC_MGR_REMOVE
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hwnd
,
IDC_MGR_VIEW
),
FALSE
);
...
...
@@ -1166,7 +1166,6 @@ static LRESULT CALLBACK cert_mgr_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
break
;
case
LVN_ITEMCHANGED
:
{
WCHAR
empty
[]
=
{
0
};
NMITEMACTIVATE
*
nm
=
(
NMITEMACTIVATE
*
)
lp
;
HWND
lv
=
GetDlgItem
(
hwnd
,
IDC_MGR_CERTS
);
int
numSelected
=
SendMessageW
(
lv
,
LVM_GETSELECTEDCOUNT
,
0
,
0
);
...
...
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