mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
parent
3fd2deefac
commit
623b2e153e
1 changed files with 4 additions and 1 deletions
|
@ -74,7 +74,7 @@ class CStubWindow32 : public CWindowImpl<CStubWindow32>
|
|||
public:
|
||||
DECLARE_WND_CLASS_EX(_T("StubWindow32"), 0, COLOR_WINDOWTEXT)
|
||||
|
||||
BEGIN_MSG_MAP(CPaletteWindow)
|
||||
BEGIN_MSG_MAP(CStubWindow32)
|
||||
END_MSG_MAP()
|
||||
};
|
||||
|
||||
|
@ -119,7 +119,10 @@ SH_ShowPropertiesDialog(LPCWSTR pwszPath, LPCITEMIDLIST pidlFolder, PCUITEMID_CH
|
|||
DWORD exstyle = WS_EX_WINDOWEDGE | WS_EX_APPWINDOW;
|
||||
CStubWindow32 stub;
|
||||
if (!stub.Create(NULL, NULL, NULL, style, exstyle))
|
||||
{
|
||||
ERR("StubWindow32 creation failed\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
/* Handle files and folders */
|
||||
PROPSHEETHEADERW Header;
|
||||
|
|
Loading…
Reference in a new issue