Index: src/ch/CustomCopyDlg.h =================================================================== diff -u -N -rcdc76e1a95383dff63a5254aeb8d37035028512c -rcb4e9d4b60d62b25ae2cf556c0642601af56c787 --- src/ch/CustomCopyDlg.h (.../CustomCopyDlg.h) (revision cdc76e1a95383dff63a5254aeb8d37035028512c) +++ src/ch/CustomCopyDlg.h (.../CustomCopyDlg.h) (revision cb4e9d4b60d62b25ae2cf556c0642601af56c787) @@ -30,7 +30,7 @@ // Construction public: CCustomCopyDlg(); // standard constructor - CCustomCopyDlg(const chcore::TTaskDefinition& rTaskDefinition); + explicit CCustomCopyDlg(const chcore::TTaskDefinition& rTaskDefinition); // Dialog Data enum { IDD = IDD_CUSTOM_COPY_DIALOG }; @@ -81,20 +81,21 @@ public: chcore::TTaskDefinition m_tTaskDefinition; std::vector m_vRecent; // recently selected paths - bool m_bActualisation; // is this dialog processing the combo text changing ? CComboBoxEx m_ctlDstPath; CListCtrl m_ctlFilters; CListBox m_ctlBufferSizes; CComboBox m_ctlOperation; CComboBox m_ctlPriority; CListCtrl m_ctlFiles; - BOOL m_bOnlyCreate; - BOOL m_bIgnoreFolders; - BOOL m_bForceDirectories; - BOOL m_bFilters; - BOOL m_bAdvanced; CImageList m_ilImages; + + bool m_bActualisation = false; // is this dialog processing the combo text changing ? + BOOL m_bOnlyCreate = FALSE; + BOOL m_bIgnoreFolders = FALSE; + BOOL m_bForceDirectories = FALSE; + BOOL m_bFilters = FALSE; + BOOL m_bAdvanced = FALSE; }; #endif