Skip to content

Commit 06a28df

Browse files
committed
Added ReleaseNotes.html and SoftwareContentRegister.html to GitHub repo
Replaced old CFileDialogST class with Armen Hakobyan's CFolderDialog library
1 parent 91a8201 commit 06a28df

19 files changed

+568
-595
lines changed

Base64Dlg.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ IntelliFile. If not, see <http://www.opensource.org/licenses/gpl-3.0.html>*/
1717
#include "stdafx.h"
1818
#include "IntelliFile.h"
1919
#include "Base64Dlg.h"
20-
#include "FileDialogST.h"
2120

2221
#include "base64.h"
2322

@@ -65,7 +64,7 @@ BOOL CBase64Dlg::OnInitDialog()
6564

6665
void CBase64Dlg::OnBnClickedBrowseInput()
6766
{
68-
CFileDialogST pFileDialog(TRUE, NULL, NULL,
67+
CFileDialog pFileDialog(TRUE, NULL, NULL,
6968
OFN_FILEMUSTEXIST | OFN_HIDEREADONLY | OFN_LONGNAMES,
7069
_T("All files\0*.*\0"), this);
7170
if (pFileDialog.DoModal() == IDOK)
@@ -79,7 +78,7 @@ void CBase64Dlg::OnBnClickedBrowseInput()
7978

8079
void CBase64Dlg::OnBnClickedBrowseOutput()
8180
{
82-
CFileDialogST pFileDialog(FALSE, NULL, NULL,
81+
CFileDialog pFileDialog(FALSE, NULL, NULL,
8382
OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT | OFN_LONGNAMES | OFN_PATHMUSTEXIST,
8483
_T("All files\0*.*\0"), this);
8584
if (pFileDialog.DoModal() == IDOK)

0 commit comments

Comments
 (0)