mirror of
https://github.com/marketideas/qasm.git
synced 2024-12-28 06:29:58 +00:00
18 lines
511 B
C++
18 lines
511 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "ConvFileOptionsDialog.h"
|
|
|
|
|
|
void ConvFileOptionsDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
//DDX_Check(pDX, IDC_CONVFILE_CONVDOS, fConvDOSText);
|
|
//DDX_Check(pDX, IDC_CONVFILE_CONVPASCAL, fConvPascalText);
|
|
DDX_Check(pDX, IDC_CONVFILE_PRESERVEDIR, fPreserveEmptyFolders);
|
|
|
|
UseSelectionDialog::DoDataExchange(pDX);
|
|
}
|