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
1fea6b96
Commit
1fea6b96
authored
Dec 07, 1998
by
Huw D M Davies
Committed by
Alexandre Julliard
Dec 07, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We don't yet want the static control to call DestroyIcon.
parent
be156661
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
static.c
controls/static.c
+11
-3
No files found.
controls/static.c
View file @
1fea6b96
...
...
@@ -218,10 +218,18 @@ LRESULT WINAPI StaticWndProc( HWND32 hWnd, UINT32 uMsg, WPARAM32 wParam,
break
;
case
WM_NCDESTROY
:
if
(
style
==
SS_ICON
)
DestroyIcon32
(
STATIC_SetIcon
(
wndPtr
,
0
)
);
else
if
(
style
==
SS_ICON
)
{
/*
* FIXME
* DestroyIcon32( STATIC_SetIcon( wndPtr, 0 ) );
*
* We don't want to do this yet because DestroyIcon32 is broken. If the icon
* had already been loaded by the application the last thing we want to do is
* GlobalFree16 the handle.
*/
}
else
{
lResult
=
DefWindowProc32A
(
hWnd
,
uMsg
,
wParam
,
lParam
);
}
break
;
case
WM_PAINT
:
...
...
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