| Index: src/plugin/PluginFilter.h |
| diff --git a/src/plugin/PluginFilter.h b/src/plugin/PluginFilter.h |
| index 79a580251ace59c8bd64abaeb482e2f682b3c3bf..825cfa624a71d2b4af67d519ddfccffadeec6e23 100644 |
| --- a/src/plugin/PluginFilter.h |
| +++ b/src/plugin/PluginFilter.h |
| @@ -139,15 +139,17 @@ private: |
| TFilterElementHideTagsNamed m_elementHideTagsId; |
| TFilterElementHideTagsNamed m_elementHideTagsClass; |
| TFilterElementHideTags m_elementHideTags; |
| + std::vector<std::wstring> m_hideFilters; |
| void ClearFilters(); |
| public: |
| CPluginFilter(const CString& dataPath = ""); |
| - bool LoadHideFilters(std::vector<std::wstring> filters); |
| + bool LoadHideFilters(const std::vector<std::wstring>& filters); |
| bool AddFilterElementHide(CString filter); |
| bool IsElementHidden(const std::wstring& tag, IHTMLElement* pEl, const std::wstring& domain, const std::wstring& indent) const; |
| HANDLE hideFiltersLoadedEvent; |
| + const std::vector<std::wstring>& GetHideFilters() const; |
| }; |