Module: wine
Branch: master
Commit: f68ac2e4c1360fe032776504d9be6c78a1c082f8
URL: https://source.winehq.org/git/wine.git/?a=commit;h=f68ac2e4c1360fe032776504…
Author: Zhiyi Zhang <zzhang(a)codeweavers.com>
Date: Wed Dec 8 15:09:30 2021 +0800
comctl32/propsheet: Fix a typo in a comment.
Signed-off-by: Zhiyi Zhang <zzhang(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/comctl32/propsheet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/comctl32/propsheet.c b/dlls/comctl32/propsheet.c
index 9309250f65a..82c0a3cc576 100644
--- a/dlls/comctl32/propsheet.c
+++ b/dlls/comctl32/propsheet.c
@@ -1289,7 +1289,7 @@ static LRESULT CALLBACK PROPSHEET_ThemedSubclassProc(HWND hwnd, UINT msg, WPARAM
/* Using FillRect() to draw background could introduce a tiling effect if the destination
* rectangle is larger than the pattern brush size, which is usually 10x600. This bug is
* visible on property sheet pages if system DPI is set to 192. However, the same bug also
- * exists on XP and explains why vista+ don't use gradient tab body backgound anymore */
+ * exists on XP and explains why vista+ don't use gradient tab body background anymore */
hdc = (HDC)wp;
GetViewportOrgEx(hdc, &org);
SetBrushOrgEx(hdc, org.x, org.y, &old_org);