Author: dreimer
Date: Fri Jun 12 23:37:41 2015
New Revision: 68114
URL: http://svn.reactos.org/svn/reactos?rev=68114&view=rev
Log:
[USETUP]
Update german language header.
Modified:
trunk/reactos/base/setup/usetup/lang/de-DE.h
Modified: trunk/reactos/base/setup/usetup/lang/de-DE.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/usetup/lang/de-…
==============================================================================
--- trunk/reactos/base/setup/usetup/lang/de-DE.h [iso-8859-1] (original)
+++ trunk/reactos/base/setup/usetup/lang/de-DE.h [iso-8859-1] Fri Jun 12 23:37:41 2015
@@ -1659,9 +1659,9 @@
{STRING_NONFORMATTEDPART,
"Sie wollen ReactOS auf einer neuen/unformatierten Partition installieren."},
{STRING_NONFORMATTEDSYSTEMPART,
- "The system partition is not formatted yet."},
+ "Die Systempartition ist noch nicht formartiert."},
{STRING_NONFORMATTEDOTHERPART,
- "The new partition is not formatted yet."},
+ "Die neue Partition ist noch nicht formatiert."},
{STRING_INSTALLONPART,
"ReactOS wird auf dieser Partition installiert."},
{STRING_CHECKINGPART,
Author: ekohl
Date: Fri Jun 12 22:56:36 2015
New Revision: 68113
URL: http://svn.reactos.org/svn/reactos?rev=68113&view=rev
Log:
[USETUP]
Mark a disk as clean after the partition table has been written to the disk.
Modified:
trunk/reactos/base/setup/usetup/partlist.c
Modified: trunk/reactos/base/setup/usetup/partlist.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/usetup/partlist…
==============================================================================
--- trunk/reactos/base/setup/usetup/partlist.c [iso-8859-1] (original)
+++ trunk/reactos/base/setup/usetup/partlist.c [iso-8859-1] Fri Jun 12 22:56:36 2015
@@ -2965,6 +2965,7 @@
if (DiskEntry->Dirty == TRUE)
{
WritePartitons(List, DiskEntry);
+ DiskEntry->Dirty = FALSE;
}
Entry = Entry->Flink;
Author: hbelusca
Date: Fri Jun 12 01:19:19 2015
New Revision: 68108
URL: http://svn.reactos.org/svn/reactos?rev=68108&view=rev
Log:
[NTVDM]: The DOS session ID specified in the NTVDM command line is in hexadecimal format (and not decimal!). Fixes NTVDM start with double-click after 9-10 launches, on ROS and Windows.
Modified:
trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c
Modified: trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/ntvdm/dos/…
==============================================================================
--- trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c [iso-8859-1] Fri Jun 12 01:19:19 2015
@@ -461,8 +461,8 @@
{
if (wcsncmp(NtVdmArgv[i], L"-i", 2) == 0)
{
- /* This is the session ID */
- SessionId = wcstoul(NtVdmArgv[i] + 2, NULL, 10);
+ /* This is the session ID (hex format) */
+ SessionId = wcstoul(NtVdmArgv[i] + 2, NULL, 16);
/* The VDM hasn't been started from a console, so quit when the task is done */
AcceptCommands = FALSE;