Commit 65479a24 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

comdlg32: Constify some variables.

parent 918c9d9a
...@@ -76,7 +76,7 @@ static const IServiceProviderVtbl IShellBrowserImpl_IServiceProvider_Vtbl; ...@@ -76,7 +76,7 @@ static const IServiceProviderVtbl IShellBrowserImpl_IServiceProvider_Vtbl;
* Local Prototypes * Local Prototypes
*/ */
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, IShellView *ppshv); static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, const IShellView *ppshv);
/* /*
* Helper functions * Helper functions
...@@ -125,7 +125,7 @@ static void COMDLG32_DumpSBSPFlags(UINT uflags) ...@@ -125,7 +125,7 @@ static void COMDLG32_DumpSBSPFlags(UINT uflags)
} }
} }
static void COMDLG32_UpdateCurrentDir(FileOpenDlgInfos *fodInfos) static void COMDLG32_UpdateCurrentDir(const FileOpenDlgInfos *fodInfos)
{ {
LPSHELLFOLDER psfDesktop; LPSHELLFOLDER psfDesktop;
STRRET strret; STRRET strret;
...@@ -895,7 +895,7 @@ static HRESULT WINAPI IShellBrowserImpl_ICommDlgBrowser_IncludeObject(ICommDlgBr ...@@ -895,7 +895,7 @@ static HRESULT WINAPI IShellBrowserImpl_ICommDlgBrowser_IncludeObject(ICommDlgBr
/************************************************************************** /**************************************************************************
* IShellBrowserImpl_ICommDlgBrowser_OnSelChange * IShellBrowserImpl_ICommDlgBrowser_OnSelChange
*/ */
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, IShellView *ppshv) static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, const IShellView *ppshv)
{ {
FileOpenDlgInfos *fodInfos; FileOpenDlgInfos *fodInfos;
......
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