From af029b056c0b1c953223376597f29f8692e7e611 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Wed, 1 May 2019 08:03:05 +0800 Subject: [PATCH] Fix LPITEMIDLIST type --- .../leveldesign/world_editor/world_editor/export_dlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ryzom/tools/leveldesign/world_editor/world_editor/export_dlg.cpp b/code/ryzom/tools/leveldesign/world_editor/world_editor/export_dlg.cpp index 7f290b784..cb58b0677 100644 --- a/code/ryzom/tools/leveldesign/world_editor/world_editor/export_dlg.cpp +++ b/code/ryzom/tools/leveldesign/world_editor/world_editor/export_dlg.cpp @@ -162,9 +162,9 @@ int CALLBACK expBrowseCallbackProc (HWND hwnd,UINT uMsg,LPARAM lp, LPARAM pData) // \return true if not canceled bool CExportDlg::callChoosePathDlg(CString &dest) const { - BROWSEINFO bi; - TCHAR str[MAX_PATH]; - ITEMIDLIST* pidl; + BROWSEINFO bi; + TCHAR str[MAX_PATH]; + LPITEMIDLIST pidl; TCHAR sTemp[1024]; bi.hwndOwner = this->m_hWnd;