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
77e1b38f
Commit
77e1b38f
authored
Jul 27, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Jul 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
view: Don't load icons, we don't have one yet.
parent
39f48dc8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
view.c
programs/view/view.c
+2
-5
No files found.
programs/view/view.c
View file @
77e1b38f
...
...
@@ -277,16 +277,13 @@ static BOOL InitApplication(HINSTANCE hInstance)
main window */
wc
.
cbSize
=
sizeof
(
WNDCLASSEX
);
/* Load small icon image */
wc
.
hIconSm
=
LoadImage
(
hInstance
,
MAKEINTRESOURCEA
(
IDI_APPICON
),
IMAGE_ICON
,
16
,
16
,
0
);
wc
.
style
=
CS_HREDRAW
|
CS_VREDRAW
;
/* Class style(s) */
wc
.
lpfnWndProc
=
WndProc
;
/* Window Procedure */
wc
.
cbClsExtra
=
0
;
/* No per-class extra data */
wc
.
cbWndExtra
=
0
;
/* No per-window extra data */
wc
.
hInstance
=
hInstance
;
/* Owner of this class */
wc
.
hIcon
=
LoadIcon
(
hInstance
,
szAppName
);
/* Icon name from .rc */
wc
.
hIcon
=
NULL
;
wc
.
hIconSm
=
NULL
;
wc
.
hCursor
=
LoadCursor
(
NULL
,
IDC_ARROW
);
/* Cursor */
wc
.
hbrBackground
=
(
HBRUSH
)(
COLOR_WINDOW
+
1
);
/* Default color */
wc
.
lpszMenuName
=
szAppName
;
/* Menu name from .rc */
...
...
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