From 3805ed585f32c3b21db8f87625bad9d243c92b09 Mon Sep 17 00:00:00 2001
From: Francois Gouget <fgouget@psn.net>
Date: Sat, 13 Mar 1999 18:15:29 +0000
Subject: [PATCH] Fixed some SendMessage32A that escaped the renaming.

---
 include/prsht.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/prsht.h b/include/prsht.h
index d47cad33d34..f975124355f 100644
--- a/include/prsht.h
+++ b/include/prsht.h
@@ -324,7 +324,7 @@ DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK)
  */
 
 #define PropSheet_SetCurSel(hDlg, hpage, index) \
-	SeandMessage32A(hDlg, PSM_SETCURSEL, (WPARAM)index, (LPARAM)hpage)
+	SendMessageA(hDlg, PSM_SETCURSEL, (WPARAM)index, (LPARAM)hpage)
 	 
 #define PropSheet_RemovePage(hDlg, index, hpage) \
 	SNDMSG(hDlg, PSM_REMOVEPAGE, index, (LPARAM)hpage)
-- 
GitLab