From a6f68b550aadbacef8daca4659181036de5c4d33 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Thu, 23 Sep 2004 04:50:58 +0000 Subject: [PATCH] Remove unneeded include statements. --- dlls/commdlg/fontdlg.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dlls/commdlg/fontdlg.c b/dlls/commdlg/fontdlg.c index f0f4e2921f9..c8f37025b66 100644 --- a/dlls/commdlg/fontdlg.c +++ b/dlls/commdlg/fontdlg.c @@ -29,9 +29,6 @@ #include "winnls.h" #include "wingdi.h" #include "winuser.h" -#include "wine/winbase16.h" -#include "wine/winuser16.h" -#include "heap.h" #include "commdlg.h" #include "dlgs.h" #include "wine/debug.h" @@ -617,7 +614,7 @@ LRESULT CFn_WMInitDialog(HWND hDlg, WPARAM wParam, LPARAM lParam, strcpy( name, "[color name]" ); } j=SendDlgItemMessageA(hDlg, cmb4, CB_ADDSTRING, 0, (LPARAM)name); - SendDlgItemMessageA(hDlg, cmb4, CB_SETITEMDATA16, j, textcolors[j]); + SendDlgItemMessageA(hDlg, cmb4, CB_SETITEMDATA, j, textcolors[j]); /* look for a fitting value in color combobox */ if (textcolors[j]==lpcf->rgbColors) SendDlgItemMessageA(hDlg,cmb4, CB_SETCURSEL,j,0); -- 2.11.4.GIT