comctl32: Use wsprintf instead of strcat building the properties
dialog title to allow different word orders.
diff --git a/dlls/comctl32/propsheet.c b/dlls/comctl32/propsheet.c
index f21852c..907e638 100644
--- a/dlls/comctl32/propsheet.c
+++ b/dlls/comctl32/propsheet.c
@@ -2151,8 +2151,7 @@
     int lenprop  = strlenW(psInfo->strPropertiesFor);
 
     dest = Alloc( (lentitle + lenprop + 1)*sizeof (WCHAR));
-    strcpyW(dest, psInfo->strPropertiesFor);
-    strcatW(dest, lpszText);
+    wsprintfW(dest, psInfo->strPropertiesFor, lpszText);
 
     SetWindowTextW(hwndDlg, dest);
     Free(dest);