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
2484b731
Commit
2484b731
authored
Oct 25, 2010
by
Carl Raffaele
Committed by
Alexandre Julliard
Oct 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Removed 16 bit dependency.
parent
d8a5bc92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
cdlg.h
dlls/comdlg32/cdlg.h
+0
-1
fontdlg.c
dlls/comdlg32/fontdlg.c
+1
-1
No files found.
dlls/comdlg32/cdlg.h
View file @
2484b731
...
...
@@ -22,7 +22,6 @@
#define _WINE_DLL_CDLG_H
#include "dlgs.h"
#include "wownt32.h"
/* Common dialogs implementation globals */
#define COMDLG32_Atom ((ATOM)0xa000)
/* MS uses this one to identify props */
...
...
dlls/comdlg32/fontdlg.c
View file @
2484b731
...
...
@@ -754,7 +754,7 @@ static LRESULT CFn_WMInitDialog(HWND hDlg, LPARAM lParam, LPCHOOSEFONTW lpcf)
{
j
=
SendDlgItemMessageW
(
hDlg
,
cmb2
,
CB_SETCURSEL
,
j
,
0
);
SendMessageW
(
hDlg
,
WM_COMMAND
,
cmb2
,
MAKELONG
(
HWND_16
(
GetDlgItem
(
hDlg
,
cmb2
)),
CBN_SELCHANGE
));
MAKELONG
(
LOWORD
(
GetDlgItem
(
hDlg
,
cmb2
)),
CBN_SELCHANGE
));
}
}
CFn_ReleaseDC
(
lpcf
,
hdc
);
...
...
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