mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-06-14 03:16:38 +10:00
Use C++17 by default
Plus C++ standard conformance fixes.
This commit is contained in:
@@ -1223,7 +1223,7 @@ bool BrowseLinkHelper( HWND parent, wchar_t *text )
|
||||
CComPtr<IFileOpenDialog> pDialog;
|
||||
if (FAILED(pDialog.CoCreateInstance(CLSID_FileOpenDialog,NULL,CLSCTX_INPROC_SERVER)))
|
||||
return false;
|
||||
CComQIPtr<IFileDialogCustomize> pCustomize=pDialog;
|
||||
CComQIPtr<IFileDialogCustomize> pCustomize(pDialog);
|
||||
if (!pCustomize)
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user