mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
63b9996009
This updates all source files to use spaces instead of tabs for indentation. It also normalizes the end-of-line markers to be Windows-style CRLF, and ensures that all files end with EOL. No substantive changes were made; "diff -w" is empty.
36 lines
807 B
C++
36 lines
807 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Support for ConvFileOptionsDialog.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "ConvFileOptionsDialog.h"
|
|
//#include "NufxArchive.h"
|
|
|
|
#if 0
|
|
/*
|
|
* Set up our modified version of the "use selection" dialog.
|
|
*/
|
|
BOOL
|
|
ConvFileOptionsDialog::OnInitDialog(void)
|
|
{
|
|
return UseSelectionDialog::OnInitDialog();
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* Convert values.
|
|
*/
|
|
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);
|
|
}
|