Index: src/ch/RuleEditAlreadyExistsDlg.h
===================================================================
diff -u -r3aa1103497018be2a7494e79e03c5f4c674485be -r9250a0229add10f4315e76848c755f337a16ae95
--- src/ch/RuleEditAlreadyExistsDlg.h	(.../RuleEditAlreadyExistsDlg.h)	(revision 3aa1103497018be2a7494e79e03c5f4c674485be)
+++ src/ch/RuleEditAlreadyExistsDlg.h	(.../RuleEditAlreadyExistsDlg.h)	(revision 9250a0229add10f4315e76848c755f337a16ae95)
@@ -20,6 +20,7 @@
 
 #include "../libchengine/FeedbackAlreadyExistsRule.h"
 #include "ComboDataWrapper.h"
+#include "FilterTypesMenuWrapper.h"
 
 /////////////////////////////////////////////////////////////////////////////
 // FeedbackRuleEditorDlg dialog
@@ -37,13 +38,17 @@
 	void EnableControls();
 
 	BOOL OnInitDialog() override;
+	BOOL OnCommand(WPARAM wParam, LPARAM lParam) override;
 
 	void FillCompareCombos();
 	void FillResponseCombo();
 
 	void OnOK() override;
 	void DoDataExchange(CDataExchange* pDX) override;
 
+	afx_msg void OnIncludeMaskButton();
+	afx_msg void OnExcludeMaskButton();
+
 	DECLARE_MESSAGE_MAP()
 
 private:
@@ -66,4 +71,6 @@
 	ComboDataWrapper<chengine::EFeedbackResult> m_comboResponse;
 	ComboDataWrapper<chengine::ECompareType> m_comboDateCompare;
 	ComboDataWrapper<chengine::ECompareType> m_comboSizeCompare;
+
+	FilterTypesMenuWrapper m_filterTypesWrapper;
 };