https://git.reactos.org/?p=reactos.git;a=commitdiff;h=78d20a9b3a85b7c4d1e108301f5792d42132217f
commit 78d20a9b3a85b7c4d1e108301f5792d42132217f Author: Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org> AuthorDate: Sat Jun 22 23:03:10 2019 +0200 Commit: Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org> CommitDate: Sun Jun 23 02:12:23 2019 +0200 [WIN32K] Fix spelling typo. --- win32ss/gdi/eng/xlateobj.c | 2 +- win32ss/user/ntuser/clipboard.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/win32ss/gdi/eng/xlateobj.c b/win32ss/gdi/eng/xlateobj.c index 53d2cebc71f..2fcdcc1291f 100644 --- a/win32ss/gdi/eng/xlateobj.c +++ b/win32ss/gdi/eng/xlateobj.c @@ -387,7 +387,7 @@ EXLATEOBJ_vInitialize( return; } - /* Check if both of the pallettes are indexed */ + /* Check if both of the palettes are indexed */ if (!(ppalSrc->flFlags & PAL_INDEXED) || !(ppalDst->flFlags & PAL_INDEXED)) { /* At least one palette is not indexed, calculate shifts/masks */ diff --git a/win32ss/user/ntuser/clipboard.c b/win32ss/user/ntuser/clipboard.c index 95f44894a20..d144220a18f 100644 --- a/win32ss/user/ntuser/clipboard.c +++ b/win32ss/user/ntuser/clipboard.c @@ -345,7 +345,7 @@ IntAddSynthesizedFormats(PWINSTATION_OBJECT pWinStaObj) IntAddFormatedData(pWinStaObj, CF_METAFILEPICT, DATA_SYNTH_USER, FALSE, TRUE); /* Note: We need to render the DIB or DIBV5 format as soon as possible - because pallette information may change */ + because palette information may change */ if (!bHaveDib && bHaveBm) IntSynthesizeDib(pWinStaObj, IntGetFormatElement(pWinStaObj, CF_BITMAP)->hData); }