khanat-opennel-code/code/nel/tools/sound/source_sounds_builder/file_dialog.cpp
Guillaume Dupuy 6f1197d633 Allow target to work with sheetName and a quiet option
HG : Enter commit message.  Lines beginning with 'HG:' are removed.
2016-11-28 00:54:33 +01:00

15 lines
532 B
C++

/*
* Workaround from the MFC CFileDialog Multi Select bug
* Thanks to Jens Bohlmann (bohly@ki.comcity.de)
*/
#include "file_dialog.h"
CMultiFileDialog::CMultiFileDialog(BOOL bOpenFileDialog, LPCTSTR lpszDefExt, LPCTSTR lpszFileName,
DWORD dwFlags, LPCTSTR lpszFilter, CWnd* pParentWnd) :
CFileDialog(bOpenFileDialog, lpszDefExt, lpszFileName, dwFlags, lpszFilter, pParentWnd)
{
m_ofn.lpstrFile = m_strFileName.GetBuffer(FILENAME_BUFFERSIZE);
m_ofn.nMaxFile = FILENAME_BUFFERSIZE;
m_ofn.Flags |= OFN_ALLOWMULTISELECT;
}