mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
shell32: Return S_OK in ::SetPropertyBag.
This commit is contained in:
parent
f6dad19730
commit
dfc2f20b89
2 changed files with 16 additions and 1 deletions
|
@ -931,7 +931,15 @@ static HRESULT WINAPI IExplorerBrowser_fnSetPropertyBag(IExplorerBrowser *iface,
|
|||
ExplorerBrowserImpl *This = (ExplorerBrowserImpl*)iface;
|
||||
FIXME("stub, %p (%s)\n", This, debugstr_w(pszPropertyBag));
|
||||
|
||||
return E_NOTIMPL;
|
||||
if(!pszPropertyBag)
|
||||
return E_INVALIDARG;
|
||||
|
||||
/* FIXME: This method is currently useless as we don't save any
|
||||
* settings anywhere, but at least one application breaks if we
|
||||
* return E_NOTIMPL.
|
||||
*/
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI IExplorerBrowser_fnSetEmptyText(IExplorerBrowser *iface,
|
||||
|
|
|
@ -1037,6 +1037,7 @@ static void test_basics(void)
|
|||
HDWP hdwp;
|
||||
RECT rc;
|
||||
HRESULT hr;
|
||||
static const WCHAR winetest[] = {'W','i','n','e','T','e','s','t',0};
|
||||
|
||||
ebrowser_instantiate(&peb);
|
||||
ebrowser_initialize(peb);
|
||||
|
@ -1145,6 +1146,12 @@ static void test_basics(void)
|
|||
hr = IExplorerBrowser_SetFolderSettings(peb, &fs);
|
||||
todo_wine ok(hr == E_INVALIDARG, "got (0x%08x)\n", hr);
|
||||
|
||||
/* SetPropertyBag */
|
||||
hr = IExplorerBrowser_SetPropertyBag(peb, NULL);
|
||||
ok(hr == E_INVALIDARG, "Got 0x%08x\n", hr);
|
||||
hr = IExplorerBrowser_SetPropertyBag(peb, winetest);
|
||||
ok(hr == S_OK, "Got 0x%08x\n", hr);
|
||||
|
||||
/* TODO: Test after browsing somewhere. */
|
||||
|
||||
IExplorerBrowser_Destroy(peb);
|
||||
|
|
Loading…
Reference in a new issue