Author: gedmurphy
Date: Mon Apr 17 21:47:39 2006
New Revision: 21640
URL: http://svn.reactos.ru/svn/reactos?rev=21640&view=rev
Log:
remove a few wineisms, they are in out main header now.
Modified:
trunk/reactos/include/reactos/wine/commctrl.h
Modified: trunk/reactos/include/reactos/wine/commctrl.h
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/include/reactos/wine/commct…
==============================================================================
--- trunk/reactos/include/reactos/wine/commctrl.h (original)
+++ trunk/reactos/include/reactos/wine/commctrl.h Mon Apr 17 21:47:39 2006
@@ -52,9 +52,7 @@
#define TBN_WRAPHOTITEM (TBN_FIRST-24) /* this is undocumented and the name is a guess */
-#define RBBS_USECHEVRON 0x00000200
#define RBHT_CHEVRON 0x0008
-#define RBN_CHEVRONPUSHED (RBN_FIRST-10)
#define RB_PUSHCHEVRON (WM_USER+43)
#define HDM_SETBITMAPMARGIN (HDM_FIRST+20)
Author: gedmurphy
Date: Mon Apr 17 21:11:51 2006
New Revision: 21638
URL: http://svn.reactos.ru/svn/reactos?rev=21638&view=rev
Log:
put cursor back into the text box if you skip too far.
This always used to catch me out when rushing an install .... alas, it shall bug me no more :)
Modified:
trunk/reactos/dll/win32/syssetup/wizard.c
Modified: trunk/reactos/dll/win32/syssetup/wizard.c
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/syssetup/wizard.c…
==============================================================================
--- trunk/reactos/dll/win32/syssetup/wizard.c (original)
+++ trunk/reactos/dll/win32/syssetup/wizard.c Mon Apr 17 21:11:51 2006
@@ -419,7 +419,10 @@
_T("Setup cannot continue until you enter your name."),
_T("ReactOS Setup"),
MB_ICONERROR | MB_OK);
+
+ SetFocus(GetDlgItem(hwndDlg, IDC_OWNERNAME));
SetWindowLong(hwndDlg, DWL_MSGRESULT, -1);
+
return TRUE;
}