Author: tfaber
Date: Tue Jan 28 06:07:56 2014
New Revision: 61857
URL:
http://svn.reactos.org/svn/reactos?rev=61857&view=rev
Log:
[SPELLING]
- Fix some typos that say "lastest." Patch by Sergei Antonov
Modified:
trunk/reactos/base/system/format/format.c
trunk/reactos/dll/win32/fmifs/query.c
trunk/reactos/dll/win32/setupapi/devinst.c
trunk/reactos/drivers/input/i8042prt/mouse.c
trunk/reactos/include/reactos/libs/fmifs/fmifs.h
Modified: trunk/reactos/base/system/format/format.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/format/format.…
==============================================================================
--- trunk/reactos/base/system/format/format.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/format/format.c [iso-8859-1] Tue Jan 28 06:07:56 2014
@@ -276,7 +276,7 @@
WCHAR szFormatW[MAX_PATH];
DWORD Index = 0;
BYTE dummy;
- BOOLEAN lastestVersion;
+ BOOLEAN latestVersion;
LoadStringAndOem( GetModuleHandle(NULL), STRING_HELP, (LPTSTR)
szMsg,RC_STRING_MAX_SIZE);
if (!LoadFMIFSEntryPoints())
@@ -286,9 +286,9 @@
}
szFormats[0] = 0;
- while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy,
&lastestVersion))
+ while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy,
&latestVersion))
{
- if (!lastestVersion)
+ if (!latestVersion)
continue;
if (szFormats[0])
_tcscat(szFormats, _T(", "));
Modified: trunk/reactos/dll/win32/fmifs/query.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/fmifs/query.c?re…
==============================================================================
--- trunk/reactos/dll/win32/fmifs/query.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/fmifs/query.c [iso-8859-1] Tue Jan 28 06:07:56 2014
@@ -15,12 +15,12 @@
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which
one? */
OUT UCHAR* Major,
OUT UCHAR* Minor,
- OUT BOOLEAN* LastestVersion)
+ OUT BOOLEAN* LatestVersion)
{
PLIST_ENTRY ListEntry;
PIFS_PROVIDER Provider;
- if (!FileSystem || !Major ||!Minor ||!LastestVersion)
+ if (!FileSystem || !Major ||!Minor ||!LatestVersion)
return FALSE;
ListEntry = ProviderListHead.Flink;
@@ -38,7 +38,7 @@
wcscpy(FileSystem, Provider->Name);
*Major = 0; /* FIXME */
*Minor = 0; /* FIXME */
- *LastestVersion = TRUE; /* FIXME */
+ *LatestVersion = TRUE; /* FIXME */
return TRUE;
}
Modified: trunk/reactos/dll/win32/setupapi/devinst.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/devinst…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/devinst.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/devinst.c [iso-8859-1] Tue Jan 28 06:07:56 2014
@@ -211,7 +211,7 @@
* Field[3] Minor version
* Field[4] Product type
* Field[5] Suite mask
- * Remark: lastests fields may be NULL if the information is not provided
+ * Remark: these fields may be NULL if the information is not provided
*/
Fields[0] = Section;
if (Fields[0] == NULL)
Modified: trunk/reactos/drivers/input/i8042prt/mouse.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/input/i8042prt/mou…
==============================================================================
--- trunk/reactos/drivers/input/i8042prt/mouse.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/input/i8042prt/mouse.c [iso-8859-1] Tue Jan 28 06:07:56 2014
@@ -214,7 +214,7 @@
(DeviceExtension->MouseButtonState & ~Mask) | (NewButtonData & Mask);
}
-/* Does lastest initializations for the mouse. This method
+/* Does final initializations for the mouse. This method
* is called just before connecting the interrupt.
*/
NTSTATUS
Modified: trunk/reactos/include/reactos/libs/fmifs/fmifs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/fmifs…
==============================================================================
--- trunk/reactos/include/reactos/libs/fmifs/fmifs.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/fmifs/fmifs.h [iso-8859-1] Tue Jan 28 06:07:56
2014
@@ -148,7 +148,7 @@
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which
one? */
OUT UCHAR* Major,
OUT UCHAR* Minor,
- OUT BOOLEAN* LastestVersion);
+ OUT BOOLEAN* LatestVersion);
BOOL NTAPI
QueryDeviceInformation(