Index: src/ch/FeedbackNotEnoughSpaceDlg.h =================================================================== diff -u -N -r08717141ce5f6926116c298cbc9442094a45bb67 -r3993a75a24145732742d61be638111d1d85c367b --- src/ch/FeedbackNotEnoughSpaceDlg.h (.../FeedbackNotEnoughSpaceDlg.h) (revision 08717141ce5f6926116c298cbc9442094a45bb67) +++ src/ch/FeedbackNotEnoughSpaceDlg.h (.../FeedbackNotEnoughSpaceDlg.h) (revision 3993a75a24145732742d61be638111d1d85c367b) @@ -21,18 +21,19 @@ #include "../libchengine/TLocalFilesystem.h" #include "../libchengine/FeedbackNotEnoughSpaceRuleList.h" +#include "../libchengine/FeedbackRules.h" ///////////////////////////////////////////////////////////////////////////// // CFeedbackNotEnoughSpaceDlg dialog class CFeedbackNotEnoughSpaceDlg : public ictranslate::CLanguageDialog { public: - CFeedbackNotEnoughSpaceDlg(unsigned long long ullSizeRequired, const wchar_t* pszSrcPath, const wchar_t* pszDstPath); // standard constructor + CFeedbackNotEnoughSpaceDlg(chengine::FeedbackRules& currentRules, unsigned long long ullSizeRequired, const wchar_t* pszSrcPath, const wchar_t* pszDstPath); // standard constructor bool IsApplyToAllItemsChecked() const; - const chengine::FeedbackNotEnoughSpaceRuleList& GetRules() const; + const chengine::FeedbackRules& GetRules() const; protected: void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support @@ -58,7 +59,7 @@ CListBox m_ctlFiles; chengine::TLocalFilesystem m_fsLocal; - chengine::FeedbackNotEnoughSpaceRuleList m_feedbackRules; // feedback rules resulting from choices made in this dialog box + chengine::FeedbackRules& m_rules; }; #endif