Commit 61b89d2c authored by Mark Jansen's avatar Mark Jansen Committed by Alexandre Julliard

shobjidl.idl: Fix some typo's.

parent 6ab10f2e
......@@ -1677,14 +1677,14 @@ static HRESULT WINAPI ICommDlgBrowser3_fnGetCurrentFilter(ICommDlgBrowser3 *ifac
return S_OK;
}
static HRESULT WINAPI ICommDlgBrowser3_fnOnPreviewCreated(ICommDlgBrowser3 *iface,
static HRESULT WINAPI ICommDlgBrowser3_fnOnPreViewCreated(ICommDlgBrowser3 *iface,
IShellView *pshv)
{
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
TRACE("%p (%p)\n", This, pshv);
if(This->pcdb3_site)
return ICommDlgBrowser3_OnPreviewCreated(This->pcdb3_site, pshv);
return ICommDlgBrowser3_OnPreViewCreated(This->pcdb3_site, pshv);
return S_OK;
}
......@@ -1701,7 +1701,7 @@ static const ICommDlgBrowser3Vtbl vt_ICommDlgBrowser3 = {
ICommDlgBrowser3_fnGetViewFlags,
ICommDlgBrowser3_fnOnColumnClicked,
ICommDlgBrowser3_fnGetCurrentFilter,
ICommDlgBrowser3_fnOnPreviewCreated
ICommDlgBrowser3_fnOnPreViewCreated
};
/**************************************************************************
......
......@@ -1489,7 +1489,7 @@ interface ICommDlgBrowser3 : ICommDlgBrowser2
[out, string, size_is(cchFileSpec)] LPWSTR pszFileSpec,
[in] int cchFileSpec);
HRESULT OnPreviewCreated(
HRESULT OnPreViewCreated(
[in] IShellView *ppshv);
}
......@@ -1900,7 +1900,7 @@ interface ISearchContext : IUnknown
HRESULT GetSearchText(
[in] BSTR *pbstrSearchText);
HRESULT GetSearchStyle(
[in] BSTR *pdwSearchStyle);
[in] DWORD *pdwSearchStyle);
}
......@@ -2695,6 +2695,7 @@ interface INameSpaceTreeControlCustomDraw : IUnknown
HRESULT ItemPrePaint(
[in] HDC hdc,
[in] RECT *prc,
[in] NSTCCUSTOMDRAW *pnstccdItem,
[in, out] COLORREF *pclrText,
[in, out] COLORREF *pclrTextBk,
[out] LRESULT *plres);
......@@ -3239,7 +3240,7 @@ interface IFileDialogControlEvents : IUnknown
HRESULT OnCheckButtonToggled(
[in] IFileDialogCustomize *pfdc,
[in] BOOL dwIDCtl,
[in] DWORD dwIDCtl,
[in] BOOL bChecked);
HRESULT OnControlActivating(
......@@ -3557,7 +3558,7 @@ interface ITransferAdviseSink : IUnknown
HRESULT ConfirmOverwrite([in] IShellItem *source,
[in] IShellItem *dest_parent,
[in, string] LPCWSTR name);
HRESULT ConfirmEncryptLoss([in] IShellItem *source);
HRESULT ConfirmEncryptionLoss([in] IShellItem *source);
HRESULT FileFailure([in] IShellItem *item,
[in, unique, string] LPCWSTR itemname,
[in] HRESULT hr,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment