mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +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:
|
public:
|
||||||
DECLARE_WND_CLASS_EX(_T("StubWindow32"), 0, COLOR_WINDOWTEXT)
|
DECLARE_WND_CLASS_EX(_T("StubWindow32"), 0, COLOR_WINDOWTEXT)
|
||||||
|
|
||||||
BEGIN_MSG_MAP(CPaletteWindow)
|
BEGIN_MSG_MAP(CStubWindow32)
|
||||||
END_MSG_MAP()
|
END_MSG_MAP()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -119,7 +119,10 @@ SH_ShowPropertiesDialog(LPCWSTR pwszPath, LPCITEMIDLIST pidlFolder, PCUITEMID_CH
|
||||||
DWORD exstyle = WS_EX_WINDOWEDGE | WS_EX_APPWINDOW;
|
DWORD exstyle = WS_EX_WINDOWEDGE | WS_EX_APPWINDOW;
|
||||||
CStubWindow32 stub;
|
CStubWindow32 stub;
|
||||||
if (!stub.Create(NULL, NULL, NULL, style, exstyle))
|
if (!stub.Create(NULL, NULL, NULL, style, exstyle))
|
||||||
|
{
|
||||||
|
ERR("StubWindow32 creation failed\n");
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
/* Handle files and folders */
|
/* Handle files and folders */
|
||||||
PROPSHEETHEADERW Header;
|
PROPSHEETHEADERW Header;
|
||||||
|
|
Loading…
Reference in a new issue