From 7e4c2d0294769269883427f941a3761a3a03d87e Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Thu, 27 Mar 2008 21:02:33 +0000 Subject: [PATCH] - display properties title for recycle bin folder See issue #3140 for more details. svn path=/trunk/; revision=32773 --- reactos/dll/win32/shell32/recyclebin.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/dll/win32/shell32/recyclebin.c b/reactos/dll/win32/shell32/recyclebin.c index 5104db4e422..bd48a798ac0 100644 --- a/reactos/dll/win32/shell32/recyclebin.c +++ b/reactos/dll/win32/shell32/recyclebin.c @@ -970,8 +970,11 @@ BOOL SH_ShowRecycleBinProperties(WCHAR sDrive) ZeroMemory(&psh, sizeof(PROPSHEETHEADERW)); psh.dwSize = sizeof(PROPSHEETHEADERW); + psh.dwFlags = PSP_DEFAULT | PSH_PROPTITLE; + psh.pszCaption = MAKEINTRESOURCEW(IDS_RECYCLEBIN_FOLDER_NAME); psh.hwndParent = NULL; psh.u3.phpage = hpsp; + psh.hInstance = shell32_hInstance; hprop = SH_CreatePropertySheetPage("BITBUCKET_PROPERTIES_DLG", BitBucketDlg, (LPARAM)sDrive, NULL); if (!hprop)