We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91a8201 commit 06a28dfCopy full SHA for 06a28df
Base64Dlg.cpp
@@ -17,7 +17,6 @@ IntelliFile. If not, see <http://www.opensource.org/licenses/gpl-3.0.html>*/
17
#include "stdafx.h"
18
#include "IntelliFile.h"
19
#include "Base64Dlg.h"
20
-#include "FileDialogST.h"
21
22
#include "base64.h"
23
@@ -65,7 +64,7 @@ BOOL CBase64Dlg::OnInitDialog()
65
64
66
void CBase64Dlg::OnBnClickedBrowseInput()
67
{
68
- CFileDialogST pFileDialog(TRUE, NULL, NULL,
+ CFileDialog pFileDialog(TRUE, NULL, NULL,
69
OFN_FILEMUSTEXIST | OFN_HIDEREADONLY | OFN_LONGNAMES,
70
_T("All files\0*.*\0"), this);
71
if (pFileDialog.DoModal() == IDOK)
@@ -79,7 +78,7 @@ void CBase64Dlg::OnBnClickedBrowseInput()
79
78
80
void CBase64Dlg::OnBnClickedBrowseOutput()
81
82
- CFileDialogST pFileDialog(FALSE, NULL, NULL,
+ CFileDialog pFileDialog(FALSE, NULL, NULL,
83
OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT | OFN_LONGNAMES | OFN_PATHMUSTEXIST,
84
85
0 commit comments