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
255e7b42
Commit
255e7b42
authored
Mar 25, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Display a larger icon in the About box.
parent
c4403226
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
about.c
programs/regedit/about.c
+4
-3
No files found.
programs/regedit/about.c
View file @
255e7b42
...
...
@@ -28,7 +28,8 @@
void
ShowAboutBox
(
HWND
hWnd
)
{
TCHAR
title
[
64
];
LoadString
(
hInst
,
IDS_APP_TITLE
,
title
,
COUNT_OF
(
title
));
ShellAbout
(
hWnd
,
title
,
_T
(
""
),
LoadIcon
(
hInst
,
MAKEINTRESOURCE
(
IDI_REGEDIT
)));
WCHAR
title
[
64
];
HICON
icon
=
LoadImageW
(
hInst
,
MAKEINTRESOURCEW
(
IDI_REGEDIT
),
IMAGE_ICON
,
48
,
48
,
LR_SHARED
);
LoadStringW
(
hInst
,
IDS_APP_TITLE
,
title
,
COUNT_OF
(
title
));
ShellAboutW
(
hWnd
,
title
,
NULL
,
icon
);
}
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