Author: dgorbachev
Date: Sun Oct 11 02:09:41 2009
New Revision: 43367
URL: http://svn.reactos.org/svn/reactos?rev=43367&view=rev
Log:
Fix English resource file. Patch by Joshua Rice, bug #4763.
Modified:
trunk/reactos/base/applications/rapps/lang/en-US.rc
Modified: trunk/reactos/base/applications/rapps/lang/en-US.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/rapps/la…
==============================================================================
--- trunk/reactos/base/applications/rapps/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/base/applications/rapps/lang/en-US.rc [iso-8859-1] Sun Oct 11 02:09:41 2009
@@ -178,7 +178,7 @@
IDS_MODIFY "Modify"
IDS_APPS_COUNT "Applications count: %d"
IDS_WELCOME_TITLE "Welcome to ReactOS Applications Manager!\n\n"
- IDS_WELCOME_TEXT "Choose a category on the left, then choose a application for install or uninstall.\nReactOS Web Site: "
+ IDS_WELCOME_TEXT "Choose a category on the left, then choose an application to install or uninstall.\nReactOS Web Site: "
IDS_WELCOME_URL "http://www.reactos.org"
IDS_INSTALLED "Installed"
IDS_AVAILABLEFORINST "Available for installation"
Author: jimtabor
Date: Sat Oct 10 23:51:24 2009
New Revision: 43366
URL: http://svn.reactos.org/svn/reactos?rev=43366&view=rev
Log:
- Fix exception. Spotted by Stefan Ginsberg.
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/misc.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/misc.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/misc.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/misc.c [iso-8859-1] Sat Oct 10 23:51:24 2009
@@ -492,7 +492,7 @@
pci->pClientThreadInfo = NULL; // FIXME Need to set it in desktop.c!
pci->ppi = ppi;
pci->fsHooks = pti->fsHooks;
- pci->hKL = pti->KeyboardLayout->hkl;
+ if (pti->KeyboardLayout) pci->hKL = pti->KeyboardLayout->hkl;
/* CI may not have been initialized. */
if (!pci->pDeskInfo && pti->pDeskInfo)
{
Author: fireball
Date: Sat Oct 10 14:40:20 2009
New Revision: 43359
URL: http://svn.reactos.org/svn/reactos?rev=43359&view=rev
Log:
[fastfat_new]
- Actually add short and long names to splay tree when setting up FCB's names.
Modified:
trunk/reactos/drivers/filesystems/fastfat_new/fcb.c
Modified: trunk/reactos/drivers/filesystems/fastfat_new/fcb.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat_new/fcb.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat_new/fcb.c [iso-8859-1] Sat Oct 10 14:40:20 2009
@@ -288,6 +288,10 @@
/* Convert raw short name to a proper string */
Fati8dot3ToString(ShortNameRaw, FALSE, ShortName);
+ /* Add the short name link */
+ FatInsertName(IrpContext, &Fcb->ParentFcb->Dcb.SplayLinksAnsi, &Fcb->ShortName);
+ Fcb->ShortName.Fcb = Fcb;
+
/* Get the long file name (if any) */
if (NumLFNs > 0)
{
@@ -314,12 +318,13 @@
DPRINT1("Converted long name: %wZ\n", UnicodeName);
+ /* Add the long unicode name link */
+ FatInsertName(IrpContext, &Fcb->ParentFcb->Dcb.SplayLinksUnicode, &Fcb->LongName);
+ Fcb->LongName.Fcb = Fcb;
+
/* Indicate that this FCB has a unicode long name */
SetFlag(Fcb->State, FCB_STATE_HAS_UNICODE_NAME);
}
-
- // TODO: Add both names to the splay tree */
- //FatInsertName(
/* Mark the fact that names were added to splay trees*/
SetFlag(Fcb->State, FCB_STATE_HAS_NAMES);