Clone
ixen <ixen@copyhandler.com>
committed
on 07 Dec 16
Removed 'using namespace' clauses from header files. Removed macros that defines namespaces. (CH-318)
ch-1.40 + 2 more
src/ch/FilterDlg.cpp (+1 -1)
15 15 *   License along with this program; if not, write to the                 *
16 16 *   Free Software Foundation, Inc.,                                       *
17 17 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18 18 ***************************************************************************/
19 19 #include "stdafx.h"
20 20 #include "../libchcore/TFileFilter.h"
21 21 #include "ch.h"
22 22 #include "FilterDlg.h"
23 23 #include "resource.h"
24 24
25 25 #ifdef _DEBUG
26 26 #define new DEBUG_NEW
27 27 #undef THIS_FILE
28 28 static char THIS_FILE[] = __FILE__;
29 29 #endif
30 30
31 31 /////////////////////////////////////////////////////////////////////////////
32 32 // CFilterDlg dialog
33 33
34 34 CFilterDlg::CFilterDlg()
35           :ictranslate::CLanguageDialog(IDD_FILTER_DIALOG)
  35         :CLanguageDialog(IDD_FILTER_DIALOG)
36 36 {
37 37         //{{AFX_DATA_INIT(CFilterDlg)
38 38         m_iArchive = FALSE;
39 39         m_bAttributes = FALSE;
40 40         m_bDate1 = FALSE;
41 41         m_bDate2 = FALSE;
42 42         m_iDirectory = FALSE;
43 43         m_bFilter = FALSE;
44 44         m_iHidden = FALSE;
45 45         m_iReadOnly = FALSE;
46 46         m_bSize = FALSE;
47 47         m_uiSize1 = 0;
48 48         m_bSize2 = FALSE;
49 49         m_uiSize2 = 0;
50 50         m_iSystem = FALSE;
51 51         m_bExclude = FALSE;
52 52         //}}AFX_DATA_INIT
53 53 }
54 54
55 55