diff --git "a/win32ss/user/user32/windows/dialog.c" "b/win32ss/user/user32/windows/dialog.c" index 784b43b9493..aaf9f87ae60 100644 --- "a/win32ss/user/user32/windows/dialog.c" +++ "b/win32ss/user/user32/windows/dialog.c" @@ -252,7 +252,7 @@ static const WORD *DIALOG_GetControl32( const WORD *p, DLG_CONTROL_INFO *info, p += strlenW( info->windowName ) + 1; } - TRACE(" %s %s %ld, %d, %d, %d, %d, %08x, %08x, %08x\n", + ERR(" %s %s %ld, %d, %d, %d, %d, %08x, %08x, %08x\n", debugstr_w( info->className ), debugstr_w( info->windowName ), info->id, info->x, info->y, info->cx, info->cy, info->style, info->exStyle, info->helpId ); @@ -2816,6 +2816,14 @@ SetDlgItemTextA( LPCSTR lpString) { HWND hwndCtrl = GetDlgItem( hDlg, nIDDlgItem ); // ReactOS Themes + ERR("SetDlgItemTextA '%s', Item %d\n", lpString, nIDDlgItem); + if (strcmp(lpString, "") == 0) + { + if (nIDDlgItem == 1002) + return SetWindowTextA( hwndCtrl, "First Line.\nSecond Line.\0"); + if (nIDDlgItem == 1004) + return SetWindowTextA( hwndCtrl, "Third Line.\0"); + } if (hwndCtrl) return SetWindowTextA( hwndCtrl, lpString ); return FALSE; }